我收到属性错误:' module'对象没有属性' enableTrace'在运行python代码时

时间:2017-03-20 14:07:11

标签: python-2.7 websocket python-import python-module

我正在使用python 2.7并且我已经安装了模块 websocket-client 0.40.0 但是我收到属性错误,如上所述。

这是我的代码,我试图通过websocket将我的PC连接到微控制器板

import websocket
import nltk
from nltk.tokenize import PunktSentenceTokenizer
import sys
import urllib
import urlparse
from urllib2 import HTTPError
from urllib2 import URLError
from getch import getch, pause
import numpy as np
websocket.enableTrace(True)
ws = websocket.create_connection("ws://169.254.7.144:1234") 

当我运行此程序时,我收到错误

文件" on_laptop.py",第35行,

websocket.enableTrace(True)

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

1 个答案:

答案 0 :(得分:0)

您可能已经安装了websocket软件包(没有enableTrace方法)而不是websocket-client

pip install websocket-client应该可以解决您的问题。