I have a python script that i'm trying to run. When i run it from within PyCharm it runs without a problem, but when i run it through the terminal using:
python my_script.py
i get:
Traceback (most recent call last):
File "folder/folder/my_script.py", line 4, in <module>
from my_module import me1, me2, me3
ImportError: No module named my_module
What could be the problem?