我試過導入模塊,直到現在我只有不幸運氣。我的導入沒有任何工作,因爲Python似乎無法找到它們。如果我將導入目錄粘貼到與我的腳本相同的文件夾中,它將運行,否則它不會。無法使用Python導入模塊
我跑:
sys.path
,得到了這種尷尬的結果:
['', '/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python27.zip', '/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7', '/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/plat-darwin', '/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/plat-mac', '/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/plat-mac/lib-scriptpackages', '/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python', '/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-tk', '/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-old', '/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload', '/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/PyObjC', '/Library/Python/2.7/site-packages']
而且我不相信這是不是很好地進行我的Python安裝。這個最好的轉折是什麼?
看起來很混亂。謝謝!
我們可以看到你想要導入的東西嗎?標準庫中的模塊還是其他內容? – James
你爲什麼認爲sys.path很尷尬?這對我來說很正常。 – CAB
任何類型的導入。我試過枕頭,我試過django,python似乎沒有抓住任何一個。 – TheOlDirtyBastard