Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我一直在尝试使用多种方法安装 PyGObject。首先,使用apt-getbut 只为 Python 2.x 安装它。接下来我尝试自己编译它,但在为 Python 3 编译它时遇到了问题。
apt-get
有谁知道如何安装它?
首先你需要安装 python3 和开发头文件。
然后你需要告诉configure使用python3:
PYTHON=python3 ./configure
正常编译安装
make make install
然后,您应该能够使用 python3 中的 pygobject。