当我在命令行中运行accessible custom control checklist命令时,出现以下错误。
% mitmproxy
Traceback (most recent call last):
File "/usr/local/bin/mitmproxy", line 7, in <module>
from libmproxy.main import mitmproxy
File "/usr/local/lib/python3.5/site-packages/libmproxy/main.py", line 5, in <module>
import thread
ImportError: No module named 'thread'
我用Google搜索了这个错误,发现了这个stackoverflow Q&amp; A页面。
根据上面的页面,发生错误是因为模块&#34; thread
&#34;重命名为&#34; _thread
&#34;在python3。
所以,我知道造成这个错误的是什么,但那又是什么?
我现在不知道该怎么做才能摆脱这个错误。
我是python的新手。我刚刚将Python和pip
安装到我的mac OSX中,如下所示,因为我想使用pydev importerror: no module named thread, debugging no longer works after pydev upgrade。
% which pip
/usr/local/bin/pip
% pip --version
pip 8.1.1 from /usr/local/lib/python3.5/site-packages (python 3.5)
% which python
/usr/bin/python
% which python3
/usr/local/bin/python3
% python --version
Python 2.7.10
% python3 --version
Python 3.5.1
有人可以告诉我现在该做什么吗?
其他信息
正如@linusg回答的那样,我创造了&#34; thread.py
&#34;文件&#34; site-packages&#34;目录并将以下代码粘贴在&#34; thread.py
&#34;
from _thread import *
__all__ = ("error", "LockType", "start_new_thread", "interrupt_main", "exit", "allocate_lock", "get_ident", "stack_size", "acquire", "release", "locked")
在我这样做之后,&#34; ImportError: No module named 'thread'
&#34;消失了,但现在我又有了另一个ImportError,它是&#34; import Cookie ImportError: No module named 'Cookie'
&#34;。
似乎在Python 3中,Cookie
模块被重命名为http.cookies
(stackoverflow.com/questions/3522029/django-mod-python-error)。
现在该怎么办?
我所拥有的&#34; site-packages&#34;目录
% ls /usr/local/lib/python3.5/site-packages (git)-[master]
ConfigArgParse-0.10.0.dist-info/ mitmproxy-0.15.dist-info/
OpenSSL/ netlib/
PIL/ netlib-0.15.1.dist-info/
Pillow-3.0.0.dist-info/ passlib/
PyYAML-3.11.dist-info/ passlib-1.6.5.dist-info/
__pycache__/ pathtools/
_cffi_backend.cpython-35m-darwin.so* pathtools-0.1.2.dist-info/
_markerlib/ pip/
_watchdog_fsevents.cpython-35m-darwin.so* pip-8.1.1.dist-info/
argh/ pkg_resources/
argh-0.26.1.dist-info/ pyOpenSSL-0.15.1.dist-info/
backports/ pyasn1/
backports.ssl_match_hostname-3.5.0.1.dist-info/ pyasn1-0.1.9.dist-info/
blinker/ pycparser/
blinker-1.4.dist-info/ pycparser-2.14.dist-info/
certifi/ pyparsing-2.0.7.dist-info/
certifi-2016.2.28.dist-info/ pyparsing.py
cffi/ pyperclip/
cffi-1.6.0.dist-info/ pyperclip-1.5.27.dist-info/
click/ setuptools/
click-6.2.dist-info/ setuptools-19.4-py3.5.egg-info/
configargparse.py sitecustomize.py
construct/ six-1.10.0.dist-info/
construct-2.5.2.dist-info/ six.py
cryptography/ test/
cryptography-1.1.2.dist-info/ thread.py
easy_install.py tornado/
hpack/ tornado-4.3.dist-info/
hpack-2.0.1.dist-info/ urwid/
html2text/ urwid-1.3.1.dist-info/
html2text-2015.11.4.dist-info/ watchdog/
idna/ watchdog-0.8.3.dist-info/
idna-2.1.dist-info/ wheel/
libmproxy/ wheel-0.26.0-py3.5.egg-info/
lxml/ yaml/
lxml-3.4.4.dist-info/
答案 0 :(得分:5)
您正在尝试在Python 3上运行Python 2代码,这将无法正常工作。
截至2016年4月,mitmproxy仅支持Python 2.7。我们正在积极努力在接下来的几个月内解决这个问题,但是现在你需要使用Python 2或http://mitmproxy.org提供的二进制文件。
截至2016年8月,mitmproxy的开发版现在支持Python 3.5+。下一个版本(0.18)将是第一个版本,包括对Python 3.5 +的支持。
截至2017年1月,mitmproxy仅支持Python 3.5 +。
答案 1 :(得分:3)
在Python 3中代替:
import thread
要做:
import _thread
答案 2 :(得分:0)
最简单的解决方案是使用python2创建virtualenv并在此virtualenv上运行mitmproxy
virtualenv -p `which python2` .env
source .env/bin/activate
pip install mitmproxy
.env/bin/mitmproxy
答案 3 :(得分:0)
保存的文件名可能是线程,这会导致错误,因为线程是Python中的预定义类。尝试更改文件名。这会有所帮助。...
答案 4 :(得分:-3)
转到site-packages
文件夹,创建一个名为thread.py
的文件并将此代码粘贴到其中:
from _thread import *
__all__ = ("error", "LockType", "start_new_thread", "interrupt_main", "exit", "allocate_lock", "get_ident", "stack_size", "acquire", "release", "locked")
这会为名为_thread
的模块thread
创建一个“别名”。虽然_thread
模块非常小,但您可以将dir()
用于更大的模块:
# Examle for the Cookies module which was renamed to http.cookies:
# Cookies.py in site-packages
import http.cookies
__all__ = tuple(dir(http.cookies))
希望这有帮助!