(1)windows环境,这个可以直接可视化操作:
(1)windows用户目录下面新建pip文件夹,pip文件夹新建pip.ini文件
(2)写入:
[global]
trusted-host=mirrors.aliyun.com
index-url=http://mirrors.aliyun.com/pypi/simple/
(2)linux环境,通过命令行修改:
mkdir ~/.pip
cat > ~/.pip/pip.conf << EOF
[global]
trusted-host=mirrors.aliyun.com
index-url=https://mirrors.aliyun.com/pypi/simple/
EOF
(3)docker环境,通过命令行配置:
RUN mkdir -p ~/.pip
RUN echo -e '\n\
[global] \n\
trusted-host=mirrors.aliyun.com \n\
index-url=https://mirrors.aliyun.com/pypi/simple/ \n\
' > ~/.pip/pip.conf
看清楚,docker虽然也是linux命令,但是写法却不一样,首先不支持 EOF 多行写入!然后就是换行需要 \n\ 。这个如果你直接复制到linux运行会发现结果不一样。
博客地址:http://blog.yoqi.me/?p=15951
这篇文章还没有评论