PIP/安装 Buster 时出错

PIP/安装 Buster 时出错

我在安装时遇到问题巴斯特通过 PIP。

我认为问题与 Python 有关。PIP 选择 Python2,但 PIP 如何使用 Python 3?

这是命令行中之后的错误pip install busterCommand /usr/bin/python -c "import setuptools, tokenize;__file__='/tmp/pip_build_felixinx/buster/setup.py';exec(compile(getattr(tokenize, 'open', open)(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install --record /tmp/pip-ZR6weF-record/install-record.txt --single-version-externally-managed --compile failed with error code 1 in /tmp/pip_build_felixinx/buster Storing debug log for failure in /home/felixinx/.pip/pip.log

这是日志 ( /home/felixinx/.pip/pip.log);

太长了所以我把它放在 Github Gist 中...... pip.log

谢谢

答案1

由于缺少权限,此安装失败。

creating /usr/local/lib/python2.7/dist-packages/buster
error: could not create '/usr/local/lib/python2.7/dist-packages/buster': Permission denied

您是否安装了须藤?:

sudo pip 安装 buster

相关内容