評論sudo apt-get install python-matplotlib正在安裝1.1.1rc版本,而不是最新版本。我需要matplotlib 1.3.1來填充曲線之間的填充。沒有發現升級命令導致成功。沒有什麼有用的網絡,那成功的作品。請幫忙。 Ubuntu版本12.04。無法將matplotlib升級到1.3.1
1
A
回答
4
ubuntu存儲庫不包含最新版本。您可以使用pip
安裝最新版本。
如果您沒有安裝pip,請使用sudo apt-get install pip
進行安裝。
然後使用
sudo pip install --upgrade matplotlib
到matplotlib升級到最新版本。
在情況下,你得到像
Running setup.py egg_info for package matplotlib
The required version of distribute (>=0.6.28) is not available, and can't be installed while this script is running. Please install a more recent version first, using 'easy_install -U distribute'
錯誤消息執行
easy_install -U distribute
並再次嘗試sudo pip install --upgrade matplotlib
。
+1
這解決了我的問題.. !!!! :) – deltasata
相關問題
- 1. 將JasperReports 1.3.1升級到JasperReports 4.6
- 2. matplotlib rgb顏色升級後無法正常工作matplotlib
- 3. 無法將Google API升級到V3
- 4. 無法將Rails從4.0.0升級到4.2.0
- 5. 無法將Neo4j 2.2.4升級到2.3.0
- 6. 無法將magento從1.5.1升級到1.7.1
- 7. 無法將restify升級到latest 5.x
- 8. 無法將PEAR從1.9.2升級到1.9.4
- 9. 無法將infinispan升級到9.1.0.Final:ClassCastException
- 10. 無法升級到rails 5
- 11. Cordova無法升級到3.5.1
- 12. ActionCable - 無法升級到WebSocket
- 13. 無法升級到Laravel 4.1
- 14. 無法升級到1.7.4
- 15. 從1.3.1版本升級了jQuery 1.6.1
- 16. 無法升級XAMPP
- 17. 無法升級pip
- 18. 無法升級SaltStack
- 19. Matplotlib升級到1.1.0後停止工作
- 20. 如何從Django 1.0.2安全升級到1.3.1?
- 21. Gradle構建工具版本從1.2.3升級到1.3.1
- 22. 我怎麼能強迫寶石升級到1.3.1寶石
- 23. 升級到highstock 1.3.1打破調整大小代碼
- 24. 升級插件無法從Grails 3.1.11升級到3.2.2
- 25. Rails.application.assets在升級後無法使用Heroku將sprocket-rails升級到3.0.0
- 26. 將Django 1.1.1升級到1.3.1,admin.autodiscover()引發異常請求內容類型
- 27. 將xcode升級到4.2「簽名無效」
- 28. 無法從1.0.0的CocoaPods升級到1.0.1
- 29. 無法升級到WIndows上的tensorflow v1.0
- 30. Rails 5 - ActionCable - 無法升級到WebSocket
存儲庫沒有最新版本。使用'sudo pip install matplotlib' –
我什麼都不懂。你能給我一個完整的代碼/命令,工作正常嗎? – deltasata
您需要使用的命令是'sudo pip install matplotlib'。您可能需要先「sudo apt-get install pip」。請在你的問題中添加更多細節,如果你什麼也沒找到,請告訴我們你搜索的是什麼! –