-1
A
回答
1
python -m pip install package
python3 -m pip install package
這就是你如何使用pip分別爲v2和v4做的。
0
在Windows中可以使用以下命令行命令:
# For Python 2
pip2 install package_name
# For Python 3
pip3 install package_name
另一種方法:
# For Python 2
py -2 -m pip install package_name
# For Python 3
py -3 -m pip install package_name
相關問題
- 1. yum安裝python包的特定版本
- 2. Brew - 安裝特定版本的brew包
- 3. 爲特定版本的python安裝lxml?
- 4. 如何安裝本地包的相關性的特定版本。
- 5. npm安裝特定版本不安裝特定版本
- 6. 如何安裝erlang的特定版本?
- 7. 如何安裝特定版本的npm?
- 8. 如何安裝GLIBCXX的特定版本?
- 9. 如何安裝docker特定版本
- 10. PIP安裝:如何強制特定的軟件包的版本
- 11. 崇高的文字3:如何安裝特定版本的包
- 12. 如何使用pip安裝特定版本的軟件包?
- 13. Cabal - 如何安裝特定版本的軟件包
- 14. 如何爲python的特定版本安裝biopython
- 15. 如何爲特定版本的Python安裝matplotlib?
- 16. 如何爲特定Python版本安裝pip
- 17. NPM安裝包與另一個包的特定版本兼容
- 18. 安裝Python包(如LXML)特定Python版本(如3.1)時,另一個Python包(如2.6)是默認
- 19. 如何安裝較舊版本的python
- 20. 安裝phantomjs /任何軟件包全球特定版本
- 21. 安裝特定版本的dnx
- 22. 安裝特定版本的hdf5(1.8.16)mac
- 23. 安裝特定版本的django
- 24. 安裝特定的Ruby版本
- 25. Elm:安裝特定版本的github庫
- 26. 安裝特定插件版本的PhoneGap
- 27. 安裝AzureRM的特定版本*模塊
- 28. 爲特定版本的Debian安裝g ++
- 29. 安裝特定版本的docker
- 30. 確定易於安裝的python版本
你有哪些操作系統? – fellzo
我正在使用Windows, –
僅使用pip3或python3的另一個pip別名 – fellzo