运行一个Dockerfile
包含
RUN yum install python3 -y\
&& url -O https://bootstrap.pypa.io/get-pip.py \
&& python3 get-pip.py\
#no --user - install for the whole machine
&& pip install awscli --upgrade
我得到
/bin/sh: url: command not found
我点击了大量的/bin/sh: xyz: command not found
,并没有找到比我已经知道的更多的东西:软件包/可执行文件url
似乎在我的系统上丢失了。我如何在CentOS上安装这个?网络搜索也只得到了无用的结果。yum install -y url
给了我No package url available.
1条答案
按热度按时间luaexgnf1#
虽然命令
url -O https://bootstrap.pypa.io/get-pip.py
看起来是正确的第一眼,它包含一个打字错误或复制粘贴错误。curl -O https://bootstrap.pypa.io/get-pip.py
与curl而不是url是正确的。