Pip -- linux 下的源 配置
Posted The snail
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Pip -- linux 下的源 配置相关的知识,希望对你有一定的参考价值。
1.在根目录下创建.pip文件夹
mkdir ~/.pip
2.在创建好的.pip文件夹下创建pip源配置文件
touch ~/.pip/pip.conf
3.选择国内某一pip源配置到文件pip.conf中,样例如下(这里用的是阿里的pip源):
[global]
index-url=http://mirrors.aliyun.com/pypi/simple
trusted-host=mirrors.aliyun.com
版本2:
[global] timeout = 60 index = http://pip.baidu.com/root/baidu/ index-url = http://pip.baidu.com/root/baidu/simple/ trusted-host = pip.baidu.com [list] format = columns
以上是关于Pip -- linux 下的源 配置的主要内容,如果未能解决你的问题,请参考以下文章