Linux下virtualenv中安装wxPython
我正在尝试在 virtualenv 中设置一个 wxpython 。 正如许多地方所详述的,easy_install / pip install 不起作用,因为 setup.py 不存在。
我看到了有关如何在 Mac 上设置它的说明,但没有找到适用于 Linux 的此类方法。
在 Linux 上如何做到这一点?
我的实际用例是一些实验性的。我正在尝试让 django 项目调用 wxpython 应用程序。这可以在 virtualenv 之外工作,但导入失败,因为 virtualenv 中未安装 wx。
感谢您提前的帮助。
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 a description on how to set it up on a Mac, but found no such methods for Linux.
How can this be done on Linux ?
My actual use case is a little experimental. I am trying to get a django project call a wxpython app. This works outside of virtualenv, but the import fails as wx is not installed in virtualenv.
Thanks for the help in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 Ubuntu 12.04 上,以下内容对我有用:
On Ubuntu 12.04 the following worked for me:
你尝试过从源代码构建它吗?过去这是一个漫长的过程,但最近似乎有所改进。说明位于 http://www.wxpython.org/builddoc.php 并包含以下功能指定安装目录。根据我的经验,一旦安装了依赖项,它就可以在 Linux 上正常构建。
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.