AttributeError:'module'对象没有属性'Serial'

时间:2018-01-29 12:04:42

标签: python-2.7 arduino pyserial

我的代码有问题,我已导入序列但有错误

AttributeError:'module'对象没有属性“Serial”。我的脚本名为rc_control_test.py

  import serial
  import pygame
  from pygame.locals import *
  class RCTest(object):
  def __init__(self):
      pygame.init()
      self.ser = serial.Serial('COM6', 9600)
      self.send_inst = True
      self.steer()

2 个答案:

答案 0 :(得分:0)

确保卸载序列,并且仅安装pyserial。为我工作。

答案 1 :(得分:0)

使用python3.6运行文件为我解决了这个问题。

$ python3.6 file.py

祝你好运。