Installing wxPython in virtualenv under Linux

后端 未结 2 1080
借酒劲吻你
借酒劲吻你 2021-01-04 23:51

I am trying to set up a wxpython inside virtualenv. As detailed in many places, the easy_install / pip install dosent work as setup.py is not present.

I cam across

相关标签:
2条回答
  • 2021-01-05 00:24

    On Ubuntu 12.04 the following worked for me:

    cd <env>/lib/python-2.7/site-packages
    ln -s /usr/lib/python2.7/dist-packages/wx-2.8-gtk2-unicode/ .
    ln -s /usr/lib/python2.7/dist-packages/wx.pth .
    ln -s /usr/lib/python2.7/dist-packages/wxversion.py .
    ln -s /usr/lib/python2.7/dist-packages/wxversion.pyc .
    
    0 讨论(0)
  • 2021-01-05 00:30

    have you tried building it from source? it used to be a long process, but it looks like it's been improved recently. the instructions are at http://www.wxpython.org/builddoc.php and include the ability to specify an install directory. it builds fine on linux in my experience, once you have the dependencies installed.

    0 讨论(0)
提交回复
热议问题