<tfoot id='wsHJJ'></tfoot>
      <bdo id='wsHJJ'></bdo><ul id='wsHJJ'></ul>

  • <small id='wsHJJ'></small><noframes id='wsHJJ'>

    <legend id='wsHJJ'><style id='wsHJJ'><dir id='wsHJJ'><q id='wsHJJ'></q></dir></style></legend>
  • <i id='wsHJJ'><tr id='wsHJJ'><dt id='wsHJJ'><q id='wsHJJ'><span id='wsHJJ'><b id='wsHJJ'><form id='wsHJJ'><ins id='wsHJJ'></ins><ul id='wsHJJ'></ul><sub id='wsHJJ'></sub></form><legend id='wsHJJ'></legend><bdo id='wsHJJ'><pre id='wsHJJ'><center id='wsHJJ'></center></pre></bdo></b><th id='wsHJJ'></th></span></q></dt></tr></i><div id='wsHJJ'><tfoot id='wsHJJ'></tfoot><dl id='wsHJJ'><fieldset id='wsHJJ'></fieldset></dl></div>

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

        时间:2023-07-23
        <i id='zg0lZ'><tr id='zg0lZ'><dt id='zg0lZ'><q id='zg0lZ'><span id='zg0lZ'><b id='zg0lZ'><form id='zg0lZ'><ins id='zg0lZ'></ins><ul id='zg0lZ'></ul><sub id='zg0lZ'></sub></form><legend id='zg0lZ'></legend><bdo id='zg0lZ'><pre id='zg0lZ'><center id='zg0lZ'></center></pre></bdo></b><th id='zg0lZ'></th></span></q></dt></tr></i><div id='zg0lZ'><tfoot id='zg0lZ'></tfoot><dl id='zg0lZ'><fieldset id='zg0lZ'></fieldset></dl></div>
          <tbody id='zg0lZ'></tbody>
        <legend id='zg0lZ'><style id='zg0lZ'><dir id='zg0lZ'><q id='zg0lZ'></q></dir></style></legend>
      2. <small id='zg0lZ'></small><noframes id='zg0lZ'>

                <tfoot id='zg0lZ'></tfoot>

                  <bdo id='zg0lZ'></bdo><ul id='zg0lZ'></ul>

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

                  上一篇:Django i18n_patterns:resolve() 没有按预期工作 下一篇:我通过python中的串口发送命令,但它们被发送多次而不是一次

                  相关文章

                  <small id='Pgg4O'></small><noframes id='Pgg4O'>

                    <bdo id='Pgg4O'></bdo><ul id='Pgg4O'></ul>
                  <tfoot id='Pgg4O'></tfoot>
                  <legend id='Pgg4O'><style id='Pgg4O'><dir id='Pgg4O'><q id='Pgg4O'></q></dir></style></legend>
                    <i id='Pgg4O'><tr id='Pgg4O'><dt id='Pgg4O'><q id='Pgg4O'><span id='Pgg4O'><b id='Pgg4O'><form id='Pgg4O'><ins id='Pgg4O'></ins><ul id='Pgg4O'></ul><sub id='Pgg4O'></sub></form><legend id='Pgg4O'></legend><bdo id='Pgg4O'><pre id='Pgg4O'><center id='Pgg4O'></center></pre></bdo></b><th id='Pgg4O'></th></span></q></dt></tr></i><div id='Pgg4O'><tfoot id='Pgg4O'></tfoot><dl id='Pgg4O'><fieldset id='Pgg4O'></fieldset></dl></div>