2017-08-29 100 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

相關問題