Pyserial:无法配置端口:(5,“输入/输出错误)(Pyserial: could not c

2019-09-16 14:29发布

我一直试图让Python代码下面两行过去运行了两天,但没有成功:

import serial
ser = serial.Serial(0)

每次我运行它,我得到以下错误:

Traceback (most recent call last):
  File "./test.py", line 4, in <module>
    ser = serial.Serial(0)
  File "/usr/lib/python2.7/dist-packages/serial/serialutil.py", line 260, in __init__
    self.open()
  File "/usr/lib/python2.7/dist-packages/serial/serialposix.py", line 280, in open
    self._reconfigurePort()
  File "/usr/lib/python2.7/dist-packages/serial/serialposix.py", line 308, in _reconfigurePort
    raise SerialException("Could not configure port: %s" % msg)
serial.serialutil.SerialException: Could not configure port: (5, 'Input/output error')

我运行Ubuntu 11.10 64位,与Pyserial 2.5(蟒串行2.5-2.1)和Python 2.7(蟒2.7.2-7ubuntu2)和我的用户是拨出组的成员。

我的64位工作运行的Ubuntu 11.10也与Python和Pyserial的版本相同,而且似乎问题并没有出现在那里。 任何建议,欢迎 - 我非常狼狈......

谢谢,Donagh

Answer 1:

如果端口不可用,抛出此异常。 在Linux上,你可以简单地指定要使用的端口的确切名称,如

ser = serial.Serial('/dev/ttyACM0')


文章来源: Pyserial: could not configure port: (5, 'Input/output error)