pip安装更换镜像

简介: pip安装更换镜像

原文链接

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

1 单次修改源

以Torch为例,常规下载方式为:

pip install torch

修改为阿里源:

pip install -i https://mirrors.aliyun.com/pypi/simple torch

2 修改默认源

如果不想在每一次下载都指定源,可以直接修改默认源。

2.1 Linux

linux下运行命令:

vi ~/.pip/pip.conf

然后写入如下内容并保存(以阿里源为例):

 [global]
 trusted-host =  mirrors.aliyun.com
 index-url = https://mirrors.aliyun.com/pypi/simple

2.2 Windows

windows下找到pip.ini文件,默认路径为:C:\Users\xxx\AppData\Roaming\pip\pip.ini

然后写入如下内容并保存(以阿里源为例):

 [global]
 trusted-host =  mirrors.aliyun.com
 index-url = https://mirrors.aliyun.com/pypi/simple

3 常用的国内源

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

豆瓣 :http://pypi.doubanio.com/simple/

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

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

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

4 常见报错

4.1 若无法连接

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

4.2 需要 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 改为 pip install --user

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

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

代码的路

相关文章
|
1月前
pip安装iterstrat.ml_stratifiers import MultilabelStratifiedKFold, MultilabelStratifiedShuffleSplit
文章介绍了如何使用iterative-stratification库进行多标签多分类的K折交叉验证,包括安装方法和示例代码。
20 1
|
1月前
|
存储 Linux 网络安全
常用的 Python 工具:使用 virtualenv、使用 Pip 进行安装和管理包
常用的 Python 工具:使用 virtualenv、使用 Pip 进行安装和管理包
22 0
|
1月前
|
Python
Python——pip安装weditor失败
Python——pip安装weditor失败
39 0
|
2月前
|
Web App开发 测试技术 Shell
确保您已经安装了Selenium和ChromeDriver。您可以使用pip来安装Selenium:
确保您已经安装了Selenium和ChromeDriver。您可以使用pip来安装Selenium:
|
2月前
|
SQL Python
你需要在你的系统上安装`sqlmap`。这通常可以通过下载其源代码并编译,或者使用包管理器(如`apt`、`yum`或`pip`,但请注意,`pip`通常不直接提供`sqlmap`)来完成。
你需要在你的系统上安装`sqlmap`。这通常可以通过下载其源代码并编译,或者使用包管理器(如`apt`、`yum`或`pip`,但请注意,`pip`通常不直接提供`sqlmap`)来完成。
|
2月前
|
开发框架 机器人 .NET
我们需要安装`pybullet`模块,这可以通过pip来完成:
我们需要安装`pybullet`模块,这可以通过pip来完成:
|
2月前
|
Python
确保你已经安装了`dronekit`库。如果没有,你可以使用pip来安装:
确保你已经安装了`dronekit`库。如果没有,你可以使用pip来安装:
|
2月前
|
开发者 Python
确保你的Python环境中已经安装了`python-docx`模块。如果还没有安装,可以通过pip来安装:
确保你的Python环境中已经安装了`python-docx`模块。如果还没有安装,可以通过pip来安装:
|
2月前
|
Python
|
2月前
|
自然语言处理 安全 Shell
【Python】已解决:Python pip正确安装pyhanlp库步骤
【Python】已解决:Python pip正确安装pyhanlp库步骤
60 2