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
基础教程推荐
- 使用大型矩阵时禁止 Pycharm 输出中的自动换行符 2022-01-01
- PermissionError: pip 从 8.1.1 升级到 8.1.2 2022-01-01
- Plotly:如何设置绘图图形的样式,使其不显示缺失日期的间隙? 2022-01-01
- 无法导入 Pytorch [WinError 126] 找不到指定的模块 2022-01-01
- 包装空间模型 2022-01-01
- 在Python中从Azure BLOB存储中读取文件 2022-01-01
- 求两个直方图的卷积 2022-01-01
- PANDA VALUE_COUNTS包含GROUP BY之前的所有值 2022-01-01
- 在同一图形上绘制Bokeh的烛台和音量条 2022-01-01
- 修改列表中的数据帧不起作用 2022-01-01
