Docker:没有这样的选项:--use-wheel

2022-01-14 00:00:00 python pip docker python-wheel dockerfile

问题描述

我正在尝试使用 Docker 为 AWS Lambda 创建一个依赖包,使用 this 存储库,但每当我尝试运行 build.sh 文件时,我都会收到以下消息:

I'm trying to use Docker to create a dependency package for AWS Lambda using this repository, but whenever I try to run the build.sh file, I end up with the message:

没有这样的选项:--use-wheel

no such option: --use-wheel

然后,当我尝试使用 pip install wheel(在 Docker 之外)时,我被告知它已经在我的本地机器上,它就是这样.如何在 Docker 容器中安装 Wheel?

Then when I try to use pip install wheel (outside of Docker), I'm told that it's already on my local machine, which it is. How do I install Wheel in the Docker container?

如果有帮助,这似乎是 build.sh 中给出问题的代码行:

If it's helpful, this appears to be the line of code in build.sh that is giving the issue:

test -f /outputs/requirements.txt && pip install --use-wheel -r /outputs/requirements.txt

非常感谢任何帮助!


解决方案

您的问题不是由于缺少依赖项( wheel 安装在 build.sh 脚本中你引用了:https://github.com/ryansb/sklearn-build-lambda/blob/master/build.sh#L18)

Your issue isn't due to missing dependencies ( wheel is installed in the build.sh script you referenced: https://github.com/ryansb/sklearn-build-lambda/blob/master/build.sh#L18 )

use-wheel 已弃用,对于 pip 不再存在.

use-wheel was deprecated and no longer exists for pip.

您可以通过从脚本中省略 --use-wheel 条目来实现相同的目的.查看链接存储库上的 Python 3.6 PR:https://github.com/ryansb/sklearn-build-lambda/pull/16/files#diff-0b83f9ddf40d7356e5ca147a077acb4

You can achieve the same by omitting the --use-wheel entries from the script. Take a look at the Python 3.6 PR on the linked repository: https://github.com/ryansb/sklearn-build-lambda/pull/16/files#diff-0b83f9dedf40d7356e5ca147a077acb4

相关文章