module ‘serial‘ has no attribute ‘Serial‘报错

在这里插入图片描述
遇到module ‘serial’ has no attribute 'Serial’时
代码定位

ser = serial.Serial()

解决方法
卸载serial
安装pyserial

pip uninstall serial
pip install pyserial

你可能感兴趣的:(bug,python,前端)