Python AttributeError:“模块"对象没有属性“序列"

2023-07-23Python开发问题
53

本文介绍了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:“模块"对象没有属性“序列"的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

The End

相关推荐

在xarray中按单个维度的多个坐标分组
groupby multiple coords along a single dimension in xarray(在xarray中按单个维度的多个坐标分组)...
2024-08-22 Python开发问题
15

Pandas中的GROUP BY AND SUM不丢失列
Group by and Sum in Pandas without losing columns(Pandas中的GROUP BY AND SUM不丢失列)...
2024-08-22 Python开发问题
17

GROUP BY+新列+基于条件的前一行抓取值
Group by + New Column + Grab value former row based on conditionals(GROUP BY+新列+基于条件的前一行抓取值)...
2024-08-22 Python开发问题
18

PANDA中的Groupby算法和插值算法
Groupby and interpolate in Pandas(PANDA中的Groupby算法和插值算法)...
2024-08-22 Python开发问题
11

PANAS-基于列对行进行分组,并将NaN替换为非空值
Pandas - Group Rows based on a column and replace NaN with non-null values(PANAS-基于列对行进行分组,并将NaN替换为非空值)...
2024-08-22 Python开发问题
10

按10分钟间隔对 pandas 数据帧进行分组
Grouping pandas DataFrame by 10 minute intervals(按10分钟间隔对 pandas 数据帧进行分组)...
2024-08-22 Python开发问题
11