pyserial的踩坑记录

20200603——在windows中出现module ‘serial’ has no attribute ‘Serial’
在windows操作系统命令行测试serial模块
import serial
ser = serial.Serial(‘COM15’)
出现异常module ‘serial’ has no attribute ‘Serial’
网上搜了一下,没找到具体的方案。后面尝试卸载serial模块
pip uninstall serial
最后出现Successfully uninstalled serial-0.0.97,感觉版本不对,再尝试卸载pyserial
pip uninstall pyserial
最后出现Successfully uninstalled pyserial-3.4
原来是同时安装serail和pyserial,导致serial冲突。先同时卸载两个模块,再单独安装pyserial。
C:\Users\Lingxc>pip install pyserial
Collecting pyserial
Using cached pyserial-3.4-py2.py3-none-any.whl (193 kB)
Installing collected packages: pyserial
Successfully installed pyserial-3.4

C:\Users\Lingxc>python
Python 3.7.3 (v3.7.3:ef4ec6ed12, Mar 25 2019, 21:26:53) [MSC v.1916 32 bit (Intel)] on win32
Type “help”, “copyright”, “credits” or “license” for more information.

import serial
ser = serial.Serial(‘COM15’)
ser.write(‘hello raspberry pi’.encode(‘utf-8’)
… )
18

成功解决问题。

采坑心得:安装模块时名字为pyserial,实际使用时是import serial,导致误以为也是这样安装:pip install serial。导致serial冲突了。

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