解决ERROR: Could not find a version that satisfies the requirement thread (from versions: none)

我想要用pip install thread安装Python的thread库的时候遇到报错:
在这里插入图片描述
因为我默认安装的都是清华的镜像源,我还以为是清华的源没有这个库,然后又换成了阿里云和豆瓣的源,发现都是一样的结果。
然后百度搜了一下,好像也没有遇到类似的解决办法,然后在Stackflow上面看到了类似的讨论,大致意思是Python3好像不叫这个名字了,好像改成了_thread。于是我又试了一下pip install _thread
发现又报错:

ERROR: Invalid requirement: ‘_thread’

然后就试了一下直接导入:import _thread
然后问题就解决了。
说明这个包应该是被集成到Anaconda里了。

你可能感兴趣的:(问题解决,python)