一文教你彻底解决Python包下载慢问题
作者:与物为春 时间:2023-04-02 20:29:32
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中按如下路径打开包下载
点击“+”
在Available Packages 对话框中,点击Manage Respositories
点击"+" 添加国内源路径即可
来源:https://blog.csdn.net/weixin_43824829/article/details/127555566
标签:python,包,下载慢
0
投稿
猜你喜欢
python实现京东订单推送到测试环境,提供便利操作示例
2021-09-01 09:03:46
Bootstrap实现前端登录页面带验证码功能完整示例
2024-04-16 08:48:18
CSS hack浏览器兼容一览表
2007-08-14 10:35:00
pytorch之torchvision.transforms图像变换实例
2021-05-19 05:44:05
Golang 语言控制并发 Goroutine的方法
2024-02-14 21:18:19
pytorch关于Tensor的数据类型说明
2023-08-22 20:39:27
如何利用Python将html转为pdf、word文件
2022-07-27 10:36:55
对Python发送带header的http请求方法详解
2022-02-06 11:44:59
Python unittest生成测试报告过程解析
2023-02-18 13:13:17
GOLANG使用Context实现传值、超时和取消的方法
2024-05-22 10:13:13
PyTorch中的Variable变量详解
2023-02-19 18:48:47
Python利用matplotlib绘制约数个数统计图示例
2023-11-12 16:00:43
Burpsuite入门及使用详细教程
2023-08-15 19:07:07
python实现磁盘日志清理的示例
2021-05-10 07:08:21
python os.stat()如何获取相关文件的系统状态信息
2022-06-18 09:28:23
Golang两行代码实现发送钉钉机器人消息
2024-04-26 17:30:39
给页面 unload 加上效果
2009-03-12 12:32:00
Go标准容器之Ring的使用说明
2023-09-21 02:18:14
SqlServer 2005 中字符函数的应用
2024-01-16 09:01:32
javascript将中国数字格式转换成欧式数字格式的简单实例
2024-05-09 10:20:21