无法找到 pip 2.7

无法找到 pip 2.7
[ERROR] /home/a3/devstack/inc/python:37 Unable to find pip2.7; cannot continue
++./stack.sh:main:724                       err_trap
++./stack.sh:err_trap:510                   local r=1
++./stack.sh:err_trap:511                   set +o xtrace
stack.sh failed
Error on exit
./stack.sh: line 494: generate-subunit: command not found

答案1

详细阐述@Rinzwind 的评论:点子是 Python 包管理器。你需要 Python 2.7 版本的 pip,可以这样安装

sudo apt-get install python-pip

看一眼pip 文档了解安装细节和其他安装选项。

我建议使用类似蟒蛇管理您的 Python 安装。这可以安装在您的主文件夹中,不需要管理员权限。如果您决定使用其他 Python 版本,您还可以轻松更改 Python 和 pip 版本。

相关内容