解决docker部署python项目pip安装慢或timeout问题、pip install read timed out问题

本文介绍了如何解决在Docker环境下使用pip安装Python依赖包时遇到的速度慢和超时问题。通过修改Dockerfile,使用国内镜像源如阿里云和清华大学等,提高下载速度。同时提供了PyCharm中设置镜像源的方法,确保单个package安装时也能快速完成。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

常用的镜像源

清华:https://pypi.tuna.tsinghua.edu.cn/simple
阿里云:https://mirrors.aliyun.com/pypi/simple
中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple
华中理工大学:http://pypi.hustunique.com
豆瓣:https://pypi.douban.com/simple
默认: https://pypi.python.org/simple

一、docker部署python项目pip安装慢或timeout问题

1. 编辑Dockerfile文件, 修改部分如下:

RUN pip3 install -i http://mirrors.cloud.aliyuncs.com/pypi/simple/ --trusted-host mirrors.cloud.aliyuncs.com --default-timeout=60 --no-cache-dir -r requirements.txt

2. 给出完整Dockerfile

FROM python:3.9

RUN mkdir /opt/app
WORKDIR /opt/app

COPY requirements.txt ./
RUN pip3 install -i http://mirrors.cloud.aliyuncs.com/pypi/simple/ --trusted-host mirrors.cloud.aliyuncs.com --default-timeout=60 --no-cache-dir -r requirements.txt

COPY ./* /opt/app/

VOLUME ["/data/docker/soo"]

CMD [ "python", "/opt/app/app.py" ]

注意:
如果你的python环境是2.7,则使用pip 指令,上面我使用的是python3.6.8,所以用pip3
可参考我另一篇博客

python环境python指令pip指令
3.xpython3pip3
2.xpythonpip
如果使用软链接则忽略

二、单个package下载超时

执行安装指令指定镜像源

示例: pip install numpy -i https://pypi.tuna.tsinghua.edu.cn/simple

pycharm设置

  1. 打开当前工程设置
    在这里插入图片描述
  2. 找到如图红框pip,然后双击–>弹出新窗口选择Manage Repositories
    在这里插入图片描述
  3. 点击左上角“+”输入镜像源地址–>确定
    在这里插入图片描述
    可以添加多个
  4. 接下来就可以安装想要的package了
    示例: matplotlib
    在这里插入图片描述
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值