2014-01-12 143 views
2

按照大熊猫社区页面(http://pandas.pydata.org/community.html),我第一次在这里发帖...安装大熊猫在Ubuntu 12.04失败

我试图使用PIP香草远程服务器上安装大熊猫,在虚拟环境中运行Ubuntu 12.04.3(64位)。我已经安装了通常的嫌犯(python-dev(2.7),numpy,scipy)。熊猫没有安装,我不确定要改变或添加什么以确保发生这种情况。

我已经看到其他引用(不是具有相同的错误)暗示内存可能是一个问题;远程服务器(Digital Ocean droplet)只有512MB。

画中画错误日志的尾部如下所示:

gcc: internal compiler error: Killed (program cc1) 

Please submit a full bug report, 

with preprocessed source if appropriate. 

See <file:///usr/share/doc/gcc-4.6/README.Bugs> for instructions. 

error: command 'gcc' failed with exit status 4 

---------------------------------------- 

Command /srv/tp/venv/bin/python -c "import setuptools;__file__='/srv/tp/venv/build/pandas/setup.py';exec(compile(open(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install --single-version-externally-managed --record /tmp/pip-0bOHrG-record/install-record.txt --install-headers /srv/tp/venv/include/site/python2.7 failed with error code 1 in /srv/tp/venv/build/pandas 

Exception information: 
Traceback (most recent call last): 
    File "/srv/tp/venv/local/lib/python2.7/site-packages/pip-1.1-py2.7.egg/pip/basecommand.py", line 104, in main 
    status = self.run(options, args) 
    File "/srv/tp/venv/local/lib/python2.7/site-packages/pip-1.1-py2.7.egg/pip/commands/install.py", line 250, in run 
    requirement_set.install(install_options, global_options) 
    File "/srv/tp/venv/local/lib/python2.7/site-packages/pip-1.1-py2.7.egg/pip/req.py", line 1133, in install 
    requirement.install(install_options, global_options) 
    File "/srv/tp/venv/local/lib/python2.7/site-packages/pip-1.1-py2.7.egg/pip/req.py", line 577, in install 
    cwd=self.source_dir, filter_stdout=self._filter_install, show_stdout=False) 
    File "/srv/tp/venv/local/lib/python2.7/site-packages/pip-1.1-py2.7.egg/pip/__init__.py", line 256, in call_subprocess 
    % (command_desc, proc.returncode, cwd)) 
InstallationError: Command /srv/tp/venv/bin/python -c "import setuptools;__file__='/srv/tp/venv/build/pandas/setup.py';exec(compile(open(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install --single-version-externally-managed --record /tmp/pip-0bOHrG-record/install-record.txt --install-headers /srv/tp/venv/include/site/python2.7 failed with error code 1 in /srv/tp/venv/build/pandas 

回答

4

但最安全的方法就是:sudo易于得到安装python-大熊猫

+0

谢谢,这为我工作。 –