Try to run this command from the system terminal. Make sure that you use the correct version of 'pip' installed for your Python interpreter located at 'C:\Users\Administrator\PycharmProjects\untitled\venv\Scripts\python.exe'.
在下载库的界面点击 Manage Repositories
通过切换下载源就可以解决问题啦
常用pip的镜像路径有:
1.阿里云 (经过测试,pip提示版本不正确)
pip install 包名 -i http://mirrors.aliyun.com/pypi/simple/
2.中国科技大学 (经过测试,能用)
pip install 包名 -i https://pypi.mirrors.ustc.edu.cn/simple/
3.豆瓣
pip install 包名 -i http://pypi.douban.com/simple/
4.清华大学 (经过测试,不能用)
pip install 包名 -i https://pypi.tuna.tsinghua.edu.cn/simple/
5.中国科学技术大学
pip install 包名 -i http://pypi.mirrors.ustc.edu.cn/simple/
6.加利福利亚大学
pip install 包名 -i https://www.lfd.uci.edu/~gohlke/pythonlibs/
————————————————
原文链接:https://blog.csdn.net/qq_44142640/article/details/104214185
来源:https://www.cnblogs.com/emanlee/p/12357830.html