如何安装支持 Python 3 的 PyGObject
我一直在尝试使用各种方法安装 PyGObject。首先,使用 apt-get
但这仅针对 Python 2.x 安装它。接下来我尝试自己编译它,但在为 Python 3 编译它时遇到问题。
有人知道如何安装它吗?
I've been trying to install PyGObject using a variety of methods. First, using apt-get
but that only installs it for Python 2.x. Next I attempted to compile it myself but I have been having problems getting it to compile for Python 3.
Does anyone know how to install it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先,您需要安装 python3 和开发头文件。
然后你需要告诉configure使用python3:
正常编译和安装
然后你应该能够使用python3中的pygobject。
First you need to install python3 and the development headers.
Then you need to tell configure to use python3:
Compile and install normally
You should then be able to use pygobject from python3.