Eu estou no dia 14.04. A versão do sistema python é 2.7.6. Eu estou testando um software destinado a python 2.7.9. Então eu tenho um virtualenv executando python 2.7.9.
A execução deste pip install wxpython
não funciona. Então eu segui estes passos aqui: Instalando wxPython e wxWidgets no Ubuntu e Debian
Agora, posso import wx
usando o sistema python (2.7.6). Mas incapaz de fazê-lo usando o virtualenv.
Eu tentei criar o wxWidgets e o wxPython a partir do código-fonte usando estas instruções , mas ele falhou com o seguinte erro :
In file included from src/helpers.cpp:17:0:
include/wx/wxPython/wxPython_int.h:35:19: fatal error: wx/wx.h: No such file or directory
#include <wx/wx.h>
^
compilation terminated.
error: command 'gcc' failed with exit status 1
EDITAR:
Eu tentei outra opção: reinstalar o virtualenv com --system-site-packages
virtualenv venv --system-site-packages
.
Isso, no entanto, não resolve o problema também. No meu caso, eu instalei o python 2.7.9 para ~/alternative/bin
, então rodando o seguinte comando ainda não importa wx para virtualenv:
virtualenv --system-site-packages -p ~/alternative/bin/bin/python2.7 my_venv