前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >pip安装更换镜像

pip安装更换镜像

作者头像
代码的路
修改2022-06-20 11:37:16
1.2K0
修改2022-06-20 11:37:16
举报
文章被收录于专栏:代码的路

使用pip来安装python包有时候安装起来会非常慢,因此需要换成国内的源来加速下载:

使用命令(以Torch为例)

代码语言:shell
复制
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple torch

常用的国内的源

清华大学:Simple Index

中国科学技术大学:Simple Index

阿里云:Simple Index

豆瓣 :Simple Index

华中理工大学:http://pypi.hustunique.com/

山东理工大学:http://pypi.sdutlinux.org/

若无法连接

WARNING: The repository located at pypi.doubanio.com is not a trusted or secure host and is being ignored. If this repository is available via HTTPS we recommend you use HTTPS instead, otherwise you may silence this warning and allow it anyway with '--trusted-host pypi.doubanio.com'. ERROR: Could not find a version that satisfies the requirement opencv-python (from versions: none) ERROR: No matching distribution found for opencv-python

可以将源中的http改为https

需要user

Could not install packages due to an EnvironmentError: [Errno 13] Permission denied: '/anaconda3/lib/python3.7/site-packages/llvmlite-0.28.0.dist-info' Consider using the --user option or check the permissions.

需要加上--user:pip install <module> 改为 pip install --user <module>

代码语言:shell
复制
pip install --user -i https://pypi.tuna.tsinghua.edu.cn/simple torch

学习更多编程知识,请关注我的公众号:

代码的路

本文参与 腾讯云自媒体同步曝光计划,分享自微信公众号。
原始发表:2022-06-17,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 代码的路 微信公众号,前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • 使用命令(以Torch为例)
  • 常用的国内的源
  • 若无法连接
  • 需要user
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档