Linux下virtualenv中安装wxPython

发布于 2024-11-28 09:32:06 字数 303 浏览 2 评论 0原文

我正在尝试在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

过去的过去 2024-12-05 09:32:06

在 Ubuntu 12.04 上,以下内容对我有用:

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 .

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 .
瞄了个咪的 2024-12-05 09:32:06

你尝试过从源代码构建它吗?过去这是一个漫长的过程,但最近似乎有所改进。说明位于 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文