centos /bin/sh:网址:未找到命令

mklgxw1f  于 2022-11-08  发布在  其他
关注(0)|答案(1)|浏览(215)

运行一个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.

luaexgnf

luaexgnf1#

虽然命令url -O https://bootstrap.pypa.io/get-pip.py看起来是正确的第一眼,它包含一个打字错误或复制粘贴错误。curl -O https://bootstrap.pypa.io/get-pip.pycurl而不是url是正确的。

相关问题