我尝试使用Docker使用this存储库为AWS Lambda创建依赖包,但每当我尝试运行build.sh文件时,我都会收到消息:
没有这样的选择: - use-wheel
然后,当我尝试使用pip install wheel
(在Docker之外)时,我告诉它已经在我的本地计算机上了,就是这样。 如何在Docker容器中安装Wheel?
如果它有用,这似乎是build.sh中提供问题的代码行:
test -f /outputs/requirements.txt && pip install --use-wheel -r /outputs/requirements.txt
非常感谢任何帮助!
答案 0 :(得分:5)
您的问题不是由于缺少依赖关系(wheel
安装在您引用的build.sh
脚本中:https://github.com/ryansb/sklearn-build-lambda/blob/master/build.sh#L18)
use-wheel
已被弃用,pip
已不再存在。
您可以通过省略脚本中的--use-wheel
条目来实现相同的目的。查看链接存储库中的Python 3.6 PR:https://github.com/ryansb/sklearn-build-lambda/pull/16/files#diff-0b83f9dedf40d7356e5ca147a077acb4
答案 1 :(得分:1)
--use-wheel
为deprecated since pip 7(赞成--only-binary
)和removed since pip 10 beta 1。
修复git仓库中的所有脚本:
git grep -l -- --use-wheel | while read f; do sed -i -e 's|use-wheel|only-binary=:all:|g' ${f}; done