您的位置 首页 docker

dockerfile 配置 Python源

dockerfile中设置pip源

 

RUN pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple

 

还有几种方法:

FROM python:3.x下插入:

RUN mkdir ~/.pip && \
    echo "[global]\nindex-url = https://mirrors.aliyun.com/pypi/simple/\ntrusted-host = mirrors.aliyun.com" > ~/.pip/pip.conf

如果是在本机换源可以在~/.pip/pip.conf 中写入:

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

 

欢迎来撩 : 汇总all

白眉大叔

关于白眉大叔linux云计算: 白眉大叔

热门文章