erro ao instalar pacotes opensubmit ubuntu 14.04 LTS

0

Estou recebendo o seguinte erro ao instalar os seguintes pacotes

link

opensubmit-web configure

Command /usr/bin/python -c "import setuptools, tokenize;file='/tmp/pip_build_ubuntu/pycrypto/setup.py';exec(compile(getattr(tokenize, 'open', open)(file).read().replace('\r\n', '\n'), file, 'exec'))" install --record /tmp/pip-f5Js12-record/install-record.txt --single-version-externally-managed --compile failed with error code 1 in /tmp/pip_build_ubuntu/pycrypto Storing debug log for failure in /home/ubuntu/.pip/pip.log

pip 1.5.4 de /usr/lib/python2.7/dist-packages (python 2.7)

    
por Oludare Fajimolu 17.01.2017 / 10:18

1 resposta

0

O erro foi removido instalando o python-dev no Ubuntu 14.04. python-dev é uma dependência de um pacote que é recomendado pelo python-pip no Ubuntu 16.04. O pacote recomendado por python-pip que tem python-dev como dependência é o python-dev-all, que não está disponível nos repositórios padrão no Ubuntu 14.04.

sudo apt-get install python-dev
    
por karel 17.01.2017 / 10:58