我想在Ubuntu 14.04下的virtualenv中安装wxPython 3.0.0.0。
您无法使用pip install
执行此操作
我已经阅读了很多关于从源代码安装wxPython的说明,但是他们并没有帮助我。
我已完成以下步骤:
$ mkdir myenv
$ cd myenv
$ source bin/activate
(myenv)$ wget http://downloads.sourceforge.net/wxpython/wxPython-src-3.0.0.0.tar.bz2
(myenv)$ tar xjvf wxPython-src-3.0.0.0.tar.bz2
我该怎么做?我应该如何执行(什么选项?)
wxPython-src-3.0.0.0目录中的./configure
,make
和make install
命令?
答案 0 :(得分:0)
运行./configure
- 它将检查您是否拥有所有必需的工具和库
阅读所有错误消息并安装缺失的元素
如果您拥有所有必需元素,则./configure
将创建makefile
。
运行make
- 使用makefile
编译wxPython
。
make install
- 它会使用makefile
将wxPython
复制到所需目录。这就是全部。