我想爲python安裝pyserial,但我不知道如何。我嘗試過像pip這樣的東西,但它不能識別安裝命令。我如何安裝它?如何安裝Python模塊
-1
A
回答
1
首先,你必須安裝PIP follow this link。然後你可以使用pip install pyserial
或者你可以從gituhub下載pyserial並在Python Shell終端使用python -m pip install 'packagename'
運行python setup.py install
-2
嘗試
import pip
pip.main(['install','pyserial'])
或下載模塊和使用python setup.py pyserial
(How to manually install a pypi module without pip/easy_install?)
+0
雖然你低估了這一點,我支持這個答案的最大限度:) –
0
談談你的Python版本? Python的默認版本是2.x.如果你想使用python 3,然後用pyenv來安裝它來控制你的python版本。
我認爲如果您使用的是Windows,解決這個問題會更容易。簡單安裝python3和pip會自動在那裏。所有你需要做的是
pip install pyserial
或
pip3 install pyserial
關於如何在Windows上安裝python3:
祝你好運!
相關問題
- 1. 如何安裝python模塊?
- 2. 如何爲Python 2.7.10安裝Python模塊
- 3. 安裝Python模塊
- 4. 安裝python模塊
- 5. 安裝Python模塊
- 6. 如何在mac上安裝python模塊
- 7. 如何安裝Python/Django模塊?
- 8. 如何運行安裝的python模塊
- 9. 如何安裝VLC模塊在Python
- 10. 如何爲Python安裝xbmc模塊
- 11. MonkeyRunner ::如何安裝python模塊?
- 12. 如何安裝Python Pynamical包(模塊)
- 13. Linux-Ubuntu:如何安裝python模塊autopy?
- 14. eclipse pydev - 如何安裝python模塊
- 15. 如何在Python上安裝模塊?
- 16. PIP安裝不安裝Python模塊
- 17. 安裝MySQLdb的Python模塊
- 18. 安裝Python模塊錯誤
- 19. Python模塊安裝錯誤
- 20. 安裝Twitter的Python模塊
- 21. Python模塊Numpy安裝
- 22. 安裝基本Python模塊
- 23. Python不會安裝模塊?
- 24. 用Sypder安裝Python模塊
- 25. Pip安裝python模塊easy
- 26. Python模塊沒有安裝
- 27. 爲python安裝Sybase模塊
- 28. 安裝Python模塊openFlashChart
- 29. Python模塊安裝問題
- 30. Python dde模塊安裝
請提供您用來安裝pyserial的命令,以及錯誤日誌 – Olia
也是您的操作系統及其版本。 –