【pip报错+安装pygame+豆瓣源pip安装】 raise ReadTimeoutError(self._pool, None, "Read timed out.") pip._vendor.ur

问题:

报错:
raise ReadTimeoutError(self._pool, None, “Read timed out.”)
pip._vendor.urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host=‘files.pythonhosted.org’, port=443): Re
ad timed out.
在这里插入图片描述

解决:

因为直接下载有限速,所以显示的意思是超时了
我们需要用豆瓣源下载既可,超级快哦

pip  install  -i  https://pypi.doubanio.com/simple/  --trusted-host pypi.doubanio.com pygame

注意把pygame改成自己需要安装的包的名字哦
在这里插入图片描述

发布了99 篇原创文章 · 获赞 19 · 访问量 3476

猜你喜欢

转载自blog.csdn.net/qq_35456045/article/details/104065525