Python Forum
No Module found in other directory than source code [SOLVED]
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
No Module found in other directory than source code [SOLVED]
#1
Hello,

I have a question regarding a few python scripts I have. I cloned a few GitHub projects I did like to test on my Debian server.
When I execute an example script in the project folder it works but when I move the script to another directory and try to execute it there it says

File "/home/pi/example_script.py", line 1, in <module>
from x import X
ModuleNotFoundError: No module named 'x'

Do I have to link the script to the source code / project folder ? If yes, how do I do so?
Reply
#2
(Nov-10-2021, 04:34 PM)AlphaInc Wrote: Hello,

I have a question regarding a few python scripts I have. I cloned a few GitHub projects I did like to test on my Debian server.
When I execute an example script in the project folder it works but when I move the script to another directory and try to execute it there it says

File "/home/pi/example_script.py", line 1, in <module>
from x import X
ModuleNotFoundError: No module named 'x'

Do I have to link the script to the source code / project folder ? If yes, how do I do so?

Sorry that was a dumb question, I figured it out myself:

import sys

#Import 
sys.path.insert(1, '/path/to/source/code')
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Upgraded Python: Module no longer found - for Linux Curbie 8 1,523 Mar-05-2025, 06:01 PM
Last Post: Curbie
Question [SOLVED] Upgraded Python: Module no longer found Winfried 1 1,141 Jan-01-2025, 02:43 PM
Last Post: Larz60+
  [SOLVED] Sub string not found in string ? jehoshua 4 1,423 Dec-03-2024, 09:17 PM
Last Post: jehoshua
  Algorithm for extracting comments from Python source code Pavel1982 7 2,951 Aug-28-2024, 02:50 AM
Last Post: timothyferriss
Question SOLVED: VS Code: Adding external directories to project? Calab 5 3,714 Aug-02-2024, 02:20 PM
Last Post: deanhystad
  Module not found error even though installed NZGeorge 1 4,865 Jul-10-2024, 09:08 AM
Last Post: Larz60+
  SOLVED: Install mailer module in Python 3.11.2? Calab 3 2,240 Jul-03-2024, 02:03 PM
Last Post: Calab
  write code that resides in parent directory franklin97355 3 1,426 Apr-14-2024, 02:03 AM
Last Post: franklin97355
  delivery exe without source code py loky62 2 1,170 Apr-04-2024, 05:47 PM
Last Post: loky62
  pyside6 module not found ForeverNoob 4 6,135 Aug-18-2023, 04:36 PM
Last Post: snippsat

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020