问题

已经安装过serial和pyserial两个库了,但是运行代码依然报错。

python——问题解决:AttributeError: module ‘serial‘ has no attribute ‘Serial‘_Python

检查是否安装,发现是没有问题的。

python——问题解决:AttributeError: module ‘serial‘ has no attribute ‘Serial‘_python_02

解决方法

将两个库都卸载掉,然后只安装pyserial,即可。

pip uninstall serial
pip uninstall pyserial
pip install pyserial

再次运行代码,问题解决:

python——问题解决:AttributeError: module ‘serial‘ has no attribute ‘Serial‘_python_03

参考文章:

  • ​​Python "AttributeError: module ‘serial’ has no attribute ‘Serial’"的解决建议​​