在Ubuntu上,如何通过apt-get安装python 2.7的pygtk?
我使用的是 Ubuntu 10.10,它附带了 Python 2.6。我想测试我用 Python 2.7 编写的 PyGTK 应用程序。
安装 python2.7
包后,如果我尝试像这样运行我的应用程序: python2.7
,我收到错误: ImportError: No module named pygtk
我的第一个想法是尝试卸载 python-gtk2
包,然后重新安装它,希望这次能为两个 Python 版本都安装它大约。
但是,卸载该软件包将删除数十个依赖 PyGTK 的关键应用程序,包括 gnome-panel 。
是否有一个 apt-get 命令可以安装 PyGTK2 for Python 2.7 而无需先卸载?
I'm using Ubuntu 10.10, which comes with Python 2.6. I would like to test a PyGTK app I'm writing with Python 2.7.
After installing the python2.7
package, if I try to run my app like this:python2.7 <my_app>
, I get the error:ImportError: No module named pygtk
My first idea was to try uninstalling the python-gtk2
package, then reinstalling it, in hopes that it would be installed for both Python versions this time around.
However, uninstalling that package would remove dozens of critical applications that depend on PyGTK, including gnome-panel
.
Is there an apt-get
command that will install PyGTK2 for Python 2.7 without first uninstalling?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
适合您的版本是11.04(取决于
python2.7
)。 10.10 中的那个将无法工作,因为它依赖于python2.6
(并针对它构建)。The version that will work for you is in 11.04 (depends on
python2.7
). The one in 10.10 won't work since it depends onpython2.6
(and built against it).