Dockerfile中 使用pip镜像源加速下载
用dockerfile文件制作镜像,提高pip下载速度1 安装pip3,python3RUN apt-get updateRUN apt-get install -y python3.5RUN apt-get install -y python3-pip2 更新pip,至最新RUN pip3 install pip -U3 配置阿里源RUN pip3 config set...
·
用dockerfile文件制作镜像,提高pip下载速度
1 安装pip3,python3
RUN apt-get update
RUN apt-get install -y python3.5
RUN apt-get install -y python3-pip
2 更新pip,至最新
RUN pip3 install pip -U
3 配置阿里源
RUN pip3 config set global.index-url http://mirrors.aliyun.com/pypi/simple
RUN pip3 config set install.trusted-host mirrors.aliyun.com
注意:如想要使用别的镜像源,则直接替换index-url后的内容
4 安装python包
RUN pip3 install -r ./requirements.txt
更多推荐
已为社区贡献1条内容
所有评论(0)