Docker: no such option: --use-wheel(Docker:没有这样的选项:--use-wheel)
问题描述
我正在尝试使用 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
这篇关于Docker:没有这样的选项:--use-wheel的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Docker:没有这样的选项:--use-wheel


基础教程推荐
- 比较两个文本文件以找出差异并将它们输出到新的文本文件 2022-01-01
- 在 Django Admin 中使用内联 OneToOneField 2022-01-01
- Python 中是否有任何支持将长字符串转储为块文字或折叠块的 yaml 库? 2022-01-01
- matplotlib 设置 yaxis 标签大小 2022-01-01
- Python,确定字符串是否应转换为 Int 或 Float 2022-01-01
- 究竟什么是“容器"?在蟒蛇?(以及所有的 python 容器类型是什么?) 2022-01-01
- 在 Python 中将货币解析为数字 2022-01-01
- 对多索引数据帧的列进行排序 2022-01-01
- kivy 应用程序中的一个简单网页作为小部件 2022-01-01
- Kivy 使用 opencv.调整图像大小 2022-01-01