我想將我的項目部署到服務器並在那裏運行。 當我嘗試從命令行啓動腳本時,它在導入處於parrent目錄中的腳本時顯示錯誤 。從命令行運行PyCharm項目
我使用PyCharm製作了項目(python 2.7.10),它分散到多個目錄中。 個e-文件夾loock fimetnihg這樣的:
項目/目錄/子目錄/ main_dir/script1.py
from dir.subdir.other_dir.script2 import * //gives error here
項目/目錄/子目錄/ other_dir/script2.py
def my_function():
//do something
我運行腳本,轉到main_dir並運行:python script1.py