网络编程
位置:首页>> 网络编程>> Python编程>> 一文教你彻底解决Python包下载慢问题

一文教你彻底解决Python包下载慢问题

作者:与物为春  发布时间:2023-04-02 20:29:32 

标签:python,包,下载慢

python默认使用的是国外镜像,有时候下载非常慢,最快的办法就是在下载命令中增加国内源:

常用的国内源如下:

清华大学:https://pypi.tuna.tsinghua.edu.cn/simple/

阿里云:http://mirrors.aliyun.com/pypi/simple/

中国科技大学:https://pypi.mirrors.ustc.edu.cn/simple/

豆瓣(douban) :http://pypi.douban.com/simple/

中国科学技术大学:http://pypi.mirrors.ustc.edu.cn/simple/

临时使用pip+国内源

示例:

pip install requests -i https://pypi.tuna.tsinghua.edu.cn/simple

永久使用pip+国内源

示例:

# 永久设置阿里云的国内源
pip config set global.trusted-host mirrors.aliyun.com
pip config set global.index-url https://mirrors.aliyun.com/simple

# 永久设置清华大学的国内源
pip config set global.trusted-host pypi.tuna.tsinghua.edu.cn
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple/

其他常用的pip命令

pip list                                           查看已安装包列表
pip install numpy                          直接安装包
pip install numpy==1.11.0            安装指定版本为1.11.0的numpy包
pip install --upgrade numpy         升级包
pip uninstall numpy                      卸载包

Pycharm中修改库下载源

在setting中按如下路径打开包下载

一文教你彻底解决Python包下载慢问题

 点击“+”

一文教你彻底解决Python包下载慢问题

 在Available Packages 对话框中,点击Manage Respositories

一文教你彻底解决Python包下载慢问题

 点击"+" 添加国内源路径即可

一文教你彻底解决Python包下载慢问题

来源:https://blog.csdn.net/weixin_43824829/article/details/127555566

0
投稿

猜你喜欢

手机版 网络编程 asp之家 www.aspxhome.com