2017-08-29 104 views
-1

匹配分配我的Python 3.6.2写了我的计划,我想通过安装螺纹PAKAGE:找不到满足要求的线程版本(版本来自:)未找到线索

pip install thread 

但我得到错误波纹管:

Could not find a version that satisfies the requirement thread (from versions:) 
No matching distribution found for thread 

也波纹管使用命令:

pip3 install thread 

但再次得到错误之上。 如何解决它?

+0

没有包名称线程 https://pypi.python.org/simple/thread/ –

+0

Python 3已经带有一个线程模块,那是你想要的吗? https://docs.python.org/3/library/threading.html#module-threading –

回答

0

至于$pip而言它,搜索this index公共开源软件包的软件包管理器,但没有包名thread

对于Python3线程你可以按照这个简单的tutorial

相关问题