python模块' serial'没有属性' Serial'

时间:2017-11-20 03:27:42

标签: python serialization serial-port

尝试连接到ubuntu 16.04上的串口时,我得到了这个回溯

MultipartStreamProvider

我的文件名为File "debugRead2.py", line 6, in <module> ser = serial.Serial('/dev/ttyACM0', 115200) AttributeError: module 'serial' has no attribute 'Serial' ,因此不存在命名问题。

当我改变时:

debugRead2.py

import serial
ser = serial.Serial('/dev/ttyACM0', 115200)

我明白了:

from serial import serial
ser = serial.Serial('/dev/ttyACM0', 115200)

我安装了Traceback (most recent call last): File "debugRead2.py", line 1, in <module> from serial import serial ImportError: cannot import name 'serial' serial个包。

0 个答案:

没有答案