我在Windows 7操作系統中使用UNIX的cShell。
當我正在執行編。它每次都顯示一個錯誤:can not import name Counter
。
雖然我在腳本from collections import Counter
中提到過。
我正在使用Python 2.7.3
,那麼爲什麼這個問題仍然存在。在CSH上的python 2.7.3中遇到無法導入計數器
0
A
回答
0
由於某種原因,python可能無法正確檢測收藏庫的路徑。請參閱官方文檔的PYTHONPATH environment variable部分,在您的計算機上查找圖書館的位置,然後手動將其添加到路徑中。
+0
也可以在程序的開頭打印出「sys.path」的值,看看它是否正確。 – martineau
0
如果您剛剛安裝新版本的python,重新啓動後可能會解決您的問題。或其他選項在這裏提供的其他選項 https://stackoverflow.com/a/11153766/1436658
相關問題
- 1. 無法在Jupyter中導入Python函數
- 2. 在Mac上使用Python 2.7.3導入.pyd(使用SWIG創建)
- 3. 無法導入FreeCAD到Python
- 4. 導入Tkinter失敗python 2.7.3 Mac OSX 10.8.2
- 5. 無法連接到內存SQLite數據庫在Windows上使用Python 2.7.3與SQLAlchemy
- 6. 將ubuntu12.04上的2.7.3-0ubuntu2的python包升級到2.7.3-0ubuntu2.2
- 7. 無法在Ubuntu上導入FANN in Python
- 8. Python 2.7.3安裝在xUbuntu上
- 9. 無法在OSX上將python導入到python
- 10. 無法將Owlready庫導入到Python中
- 11. Matplotlib無法在Mac OS 10.8.2上使用Python 2.7.3安裝
- 12. 無法導入xspec在Python
- 13. IDLE在python中導入sleekxmpp時會掛起2.7.3
- 14. 無法安裝xlrd 0.7.8 for python 2.7.3
- 15. 無法使用Python(2.7.3),bash和GNOME3
- 16. 在Linux上編譯Python 2.7.3以嵌入到C++應用程序
- 17. 在Ninja IDE上導入Python模塊時遇到問題
- 18. 導入Python模塊時遇到問題
- 19. 導入到Azure中 - 無法導入包,無法連接到目標服務器
- 20. 將python 2.7.3升級到2.7.6後導入錯誤
- 21. 無法在服務器上導入python請求
- 22. 無法在Mac上導入pygame到Netbeans
- 23. 如何將循環計數器添加到csh的foreach中
- 24. 無法在python中導入beautifulsoup
- 25. 無法在python 3.5中導入ggplot
- 26. 無法在Python 2.7中導入boto3
- 27. 無法在Python中導入urllib
- 28. 無法在Python中導入dlib
- 29. 無法在Python中導入numpy庫
- 30. 無法在Python中導入GST
該錯誤不在csh中,因爲您在標題中說過,它是在Python中,因爲您已正確標記。 –
仔細檢查您使用的是Python 2.7 - Counter是相對較新的。 – cdarke