我使用pyenv-virtualenv设置了Python virtualenv。我安装了R statistical software,现在我需要安装rpy2包以允许Python和R之间的通信。
安装了Python v2.7.12和R版本3.3.1(2016-06-21)。
尝试使用rpy2
安装pip install rpy2
时失败:
/usr/bin/ld: no se puede encontrar -llzma
collect2: error: ld returned 1 exit status
error: command 'gcc' failed with exit status 1
----------------------------------------
Command "/home/gabriel/.pyenv/versions/2.7.12/envs/test-env/bin/python2.7 -u -c "import setuptools, tokenize;__file__='/tmp/pip-build-b7O2v3/rpy2/setup.py';exec(compile(getattr(tokenize, 'open', open)(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install --record /tmp/pip-4SXyxe-record/install-record.txt --single-version-externally-managed --compile --install-headers /home/gabriel/.pyenv/versions/2.7.12/envs/asteca-env/include/site/python2.7/rpy2" failed with error code 1 in /tmp/pip-build-b7O2v3/rpy2/
no se puede encontrar -llzma
表示can't find -llzma
。
python-dev
已安装在我的系统中。
如何绕过此问题?
答案 0 :(得分:0)
我终于可以成功安装软件包了。
问题是我在创建python-dev
后安装了virtualenv
库。这导致rpy2
包的安装失败。
解决方案是卸载virtualenv
并从头开始重新创建。