我有python 2.7,我在它旁邊安裝了python 3.4,但python 3.4沒有numpy包。當我使用sudo pip安裝-U numpy時,它將它安裝在python2.7位置。我如何在已經安裝python 2.7的機器上安裝numpy for python 3.4?在Ubuntu下安裝numpy for python 3.4.0
2
A
回答
3
你靠近安裝numpy的,更新的,你必須sudo pip3 install -U numpy
python3.4包(注意pip3
)。
這可能是你還是得先安裝PIP3(不知道這是否是捆綁)的情況。可能是因爲你必須sudo apt-get install python-pip3
什麼的。如果你有最近的Ubuntu(我相信從14.10開始),那麼當你第一次啓動Ubuntu時,你已經安裝了python 3.4,以及預裝了pip3
。
您也可以通過Ubuntu的軟件包管理器安裝,但如果你想要一個獨立於操作系統的方式,你可以只使用pip3
。
2
只是爲Python 3軟件中心,或者在終端
sudo apt-get install python3-numpy
相關問題
- 1. 在Ubuntu 10.04上安裝numpy for python 3.1.2
- 2. 在ubuntu下重新安裝numpy
- 3. 在Ubuntu下安裝python-matplotlib
- 4. 如何在Ubuntu中安裝Oauth2.0 for python
- 5. 在ubuntu下安裝pycairo
- 6. numpy的Ubuntu的(12.04)下安裝引起的Python導入錯誤
- 7. OSX通過brew for python3安裝numpy
- 8. 在終端上從Ubuntu安裝Numpy 1.9.2
- 9. Ubuntu - Python安裝
- 10. 安裝Selenium for Python 3.6(Ubuntu 17.04)
- 11. 安裝PIL/Pillow for ubuntu python 2.7
- 12. 在Ubuntu下安裝pyinterval
- 13. Conda安裝R 3.4.0
- 14. 在Ubuntu 11.10的virtualenv中安裝'numpy`
- 15. 在ubuntu上安裝Apache spark for pyspark
- 16. 爲python安裝numpy
- 17. CX_Oracle for python,在Anaconda下未安裝
- 18. error安裝phpmyadmin for ubuntu 12.10
- 19. 與PIP安裝NumPy的Ubuntu上
- 20. 安裝numpy for python3 in fedora 13
- 21. 在ubuntu下安裝rails
- 22. 在Ubuntu下安裝ns2 11.04
- 23. 在Ubuntu下安裝odtone
- 24. 在Ubuntu下安裝cassandra?
- 25. [R 3.4.0 tm.plugin.webmining安裝失敗
- 26. 在Ubuntu上安裝mpi.h for C++
- 27. 在ubuntu上安裝imap for php7.1
- 28. 在python3上安裝NCurses for Ubuntu
- 29. 在ubuntu上安裝OpenCL for AMD 16.04
- 30. 在Ubuntu上安裝MagickWand for PHP
使用virtualenv或'python3-pip'。 – DTing