我剛開始學習Python。從命令行調用時無法找到python模塊
在c:\ Python27中,我創建了我的第一個hello.py腳本。
c:\Python27 python hello.py
現在我創造了另一個劇本,但在不同的目錄:
當我在命令行中鍵入它的工作原理。該目錄位於 PYTHONPATH中。
mymodule.py:
print("general")
def fone():
print("special line")
當我延長hello.py腳本:
import mymodule
print "Hello"
mymodule.fone()
的MyModule的腳本/模塊的被發現和導入正確的,所以PYTHONPATH似乎是確定。
但是,當我在命令行中鍵入:
c:\Python python mymodule.py
我得到的錯誤:
python: can't open file 'mymodule.py': [Errno 2] No such file or directory
這是爲什麼?
非常感謝幫忙