如何安装支持 Python 3 的 PyGObject

发布于 2024-11-29 12:09:11 字数 151 浏览 2 评论 0原文

我一直在尝试使用各种方法安装 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 技术交流群。

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

发布评论

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

评论(1

再可℃爱ぅ一点好了 2024-12-06 12:09:11

首先,您需要安装 python3 和开发头文件。

然后你需要告诉configure使用python3:

PYTHON=python3 ./configure

正常编译和安装

make
make install

然后你应该能够使用python3中的pygobject。

First you need to install python3 and the development headers.

Then you need to tell configure to use python3:

PYTHON=python3 ./configure

Compile and install normally

make
make install

You should then be able to use pygobject from python3.

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