pySerial 运行命令列出端口
Posted
技术标签:
【中文标题】pySerial 运行命令列出端口【英文标题】:pySerial running command to list ports 【发布时间】:2021-10-08 13:39:09 【问题描述】:我正在使用 pySerial,我正在使用 CMD 运行此命令以列出可用的 COM 端口并在找到时显示 COM 端口号:
python -m serial.tools.list_ports
我知道当我使用 python -m 标志时命令行将导入串行模块,并且我可以访问其中的对象,因此它应该显示输出。但是,当使用 IDLE shell 运行时,相同的命令不起作用:
import serial
print(serial.tools.list_ports_common)
这会返回一个错误 AttributeError: module 'serial' has no attribute 'tools' 为什么它在 IDLE 中不起作用?
【问题讨论】:
【参考方案1】:你需要先导入:
from serial.tools import list_ports
list_ports.main() # Same result as python -m serial.tools.list_ports
您可以查看来源here
【讨论】:
谢谢。这样就解决了。以上是关于pySerial 运行命令列出端口的主要内容,如果未能解决你的问题,请参考以下文章