我正在尝试使用Pyserial
从设备读取串行输出。但是,模块未被识别,pip install pyserial
不断给我断言错误。
我尝试将pyserial
文件夹添加到路径并将其移动到python modules文件夹中。
import serial
ImportError: No module named serial
pip install pyserial
AssertionError: c:\python27\lib\site-packages\jdcal-1.3-py2.7.egg/EGG-INFO/PKG-INFO is not a subpath of c:\python27\lib\site-packages\jdcal-1.3-py2.7.egg\
我希望它可以安装,但是它给我有关不相关文件的错误。
答案 0 :(得分:0)
也许尝试
pip3 install pyserial
或
sudo easy_install pyserial
或根据文档
python -m pip install pyserial
https://pyserial.readthedocs.io/en/latest/pyserial.html#from-pypi