Pyserial:无法配置端口:(5,'输入/输出错误)

时间:2012-04-16 20:54:29

标签: python linux ubuntu pyserial

我一直试图在过去两天内运行以下两行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')

我正在使用64位的Ubuntu 11.10,Pyserial 2.5(python-serial 2.5-2.1)和Python 2.7(python 2.7.2-7ubuntu2),我的用户是拨出组的成员。

我也在运行Ubuntu 11.10 64位,使用相同版本的Python和Pyserial,这个问题似乎没有出现。欢迎任何建议 - 我很沮丧...

谢谢, Donagh

1 个答案:

答案 0 :(得分:7)

如果端口不可用,则抛出此异常。在Linux上,您只需指定要使用的端口的确切名称,例如

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