本篇 ShengYu 將介紹如何在 Python 環境中安裝 pyserial 模組。
安裝 pyserial
遇到 ImportError: No module named ‘serial’ 這個錯誤訊息的話,請安裝 python 的 pyserial 模組。
官方文件:https://pythonhosted.org/pyserial/
PyPI:https://pypi.org/project/pyserial/
Github:https://github.com/pyserial/pyserial
輸入下列指令安裝 pyserial 模組,以下列出 python 2 與 python 3 的方法︰
Python 2 安裝方法1
2
3$ pip install pyserial
# or (Ubuntu)
$ apt-get install python-serial
Python 3 安裝方法1
2
3$ pip3 install pyserial
# or (Ubuntu)
$ apt-get install python3-serial
其它相關文章推薦
Python 新手入門教學懶人包