gpt4 book ai didi

python - 为什么 pip 在本地与在 docker 容器中的行为不同?

转载 作者:行者123 更新时间:2023-12-01 08:07:35 26 4
gpt4 key购买 nike

所以我有一个如下所示的需求文件 -

aiohttp==3.5.4
aioredis==1.2.0
amqp==2.4.2
asn1crypto==0.24.0
astroid==2.1.0
async-timeout==3.0.1
atomicwrites==1.3.0
# so on...

我运行

pip install -r requirements.txt

本地一切正常。

但是,当我使用这个 Dockerfile 时

FROM python:2.7-slim

WORKDIR /app

COPY . /app

# Install any needed packages specified in requirements.txt
RUN pip install -r requirements.txt

EXPOSE 80

ENV FLASK_APP=iterative.py
ENV FLASK_ENV=development

RUN pip install gunicorn

CMD ["gunicorn -w 4 app:app"]

我收到此错误 -

Could not find a version that satisfies the requirement aiohttp==3.5.4 (from -r requirements.txt (line 1)) (from versions: 0.1, 0.2, 0.3, 0.4, 0.4.1, 0.4.2, 0.4.3, 0.4.4, 0.5.0, 0.6.0, 0.6.1, 0.6.2, 0.6.3, 0.6.4, 0.6.5, 0.7.0, 0.7.1, 0.7.2, 0.7.3, 0.8.0, 0.8.1, 0.8.2, 0.8.3, 0.8.4, 0.9.0, 0.9.1, 0.9.2, 0.9.3, 0.10.0, 0.10.1, 0.10.2, 0.11.0, 0.12.0, 0.13.0, 0.13.1, 0.14.0, 0.14.1, 0.14.2, 0.14.3, 0.14.4, 0.15.0, 0.15.1, 0.15.2, 0.15.3, 0.16.0, 0.16.1, 0.16.2, 0.16.3, 0.16.4, 0.16.5, 0.16.6, 0.17.0, 0.17.1, 0.17.2, 0.17.3, 0.17.4, 0.18.0, 0.18.1, 0.18.2, 0.18.3, 0.18.4, 0.19.0, 0.20.0, 0.20.1, 0.20.2, 0.21.0, 0.21.1, 0.21.2, 0.21.4, 0.21.5, 0.21.6, 0.22.0a0, 0.22.0b0, 0.22.0b1, 0.22.0b2, 0.22.0b3, 0.22.0b4, 0.22.0b5, 0.22.0b6, 0.22.0, 0.22.1, 0.22.2, 0.22.3, 0.22.4, 0.22.5, 1.0.0, 1.0.1, 1.0.2, 1.0.3, 1.0.5, 1.1.0, 1.1.1, 1.1.2, 1.1.3, 1.1.4, 1.1.5, 1.1.6, 1.2.0, 1.3.0, 1.3.1, 1.3.2, 1.3.3, 1.3.4, 1.3.5, 2.0.0rc1, 2.0.0, 2.0.1, 2.0.2, 2.0.3, 2.0.4, 2.0.5, 2.0.6.post1, 2.0.7, 2.1.0, 2.2.0, 2.2.1, 2.2.2, 2.2.3, 2.2.4, 2.2.5, 2.3.0a4, 2.3.0, 2.3.1, 2.3.2b2)
No matching distribution found for aiohttp==3.5.4 (from -r requirements.txt (line 1))

而且,我本地的python版本是2.7.15。

如果我添加

RUN pip install aiohttp

构建时出现此错误

aiohttp requires Python '>=3.4.2' but the running Python is 2.7.16

所以我有两个问题 -

  1. 为什么我的 pip 安装在本地可以正常运行,但在构建我的 docker 镜像时却运行正常?
  2. 当我在 Docker 中运行时,为什么 aiohttp 需要 python 版本 >=3.4.2,而不是本地运行?

谢谢

最佳答案

好的,我解决了这个问题。

表面上,解决方案是使用更现代版本的 python - 我最终使用了 3.6。

认为发生的情况是 pip 使用的是 python3,而 python 命令行版本是 2.7.15。

关于python - 为什么 pip 在本地与在 docker 容器中的行为不同?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55468631/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com