0

我正在尝试使用在 ubuntu 上安装 gcovr

pip install gcovr

但它给出了这个错误

Command /usr/bin/python -c "import setuptools, tokenize;__file__='/tmp/pip_build_mymachine/gcovr/setup.py';exec(compile(getattr(tokenize, 'open', open)(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install --record /tmp/pip-uqjIdg-record/install-record.txt --single-version-externally-managed --compile failed with error code 1 in /tmp/pip_build_mymachin/gcovr

在 /home/mymachin/.pip/pip.log 中存储失败的调试日志

有任何想法吗?

谢谢

4

1 回答 1

1

我以这种方式安装它没有问题:

sudo pip install gcovr

没有错误。

如果您使用的是 Ubuntu 14.04,则可能需要升级您的 pip。

curl "https://bootstrap.pypa.io/get-pip.py" -o "get-pip.py"
sudo python get-pip.py
于 2015-07-01T20:15:45.867 回答