Python AttributeError: #39;module#39; object has no attribute #39;Serial#39;(Python AttributeError:“模块对象没有属性“序列)
问题描述
我正在尝试在运行 Debian 的 Raspberry Pi 上使用 Python 2.6 访问串行端口.我的脚本名为 serial.py 尝试导入 pySerial:
I'm trying to access a serial port with Python 2.6 on my Raspberry Pi running Debian.
My script named serial.py tries to import pySerial:
import serial
ser = serial.Serial('/dev/ttyAMA0', 9600)
ser.write("hello world!")
由于某种原因,它拒绝建立串行连接并出现此错误:
For some reason it refuses to establish the serial connection with this error:
AttributeError: 'module' object has no attribute 'Serial'
当我尝试在交互式 Python 解释器中键入相同的代码时,它仍然不起作用.
When I try to type the same code in the interactive Python interpreter it still doesn't work.
奇怪的是,它曾经在大约几个小时前起作用.
Strangely, it used to work about a couple hours ago.
可能是什么问题?我已经尝试修复了一段时间,再次安装 pySerial,重写我的代码,仔细检查串口等.
What could be the problem? I've tried to fix this for a while, installing pySerial again, rewriting my code, double-checking the serial port, etc.
推荐答案
你导入的是模块,而不是类.所以,你必须写:
You're importing the module, not the class. So, you must write:
from serial import Serial
需要正确安装serial模块:pip install pyserial.
这篇关于Python AttributeError:“模块"对象没有属性“序列"的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Python AttributeError:“模块"对象没有属性“序列"
基础教程推荐
- 在 Python 中将货币解析为数字 2022-01-01
- 究竟什么是“容器"?在蟒蛇?(以及所有的 python 容器类型是什么?) 2022-01-01
- 对多索引数据帧的列进行排序 2022-01-01
- Python,确定字符串是否应转换为 Int 或 Float 2022-01-01
- 在 Django Admin 中使用内联 OneToOneField 2022-01-01
- matplotlib 设置 yaxis 标签大小 2022-01-01
- 比较两个文本文件以找出差异并将它们输出到新的文本文件 2022-01-01
- Kivy 使用 opencv.调整图像大小 2022-01-01
- Python 中是否有任何支持将长字符串转储为块文字或折叠块的 yaml 库? 2022-01-01
- kivy 应用程序中的一个简单网页作为小部件 2022-01-01
