pygobject-2.28.6将无法配置:找不到包"gobject-introspection-1.0",如何解决?

Stu*_*pac 31 cygwin gobject pkg-config pygobject gobject-introspection

我试图让pygobject-2.28.6在cygwin中编译(存储库中的版本是2.28.4,这有一些问题).这是./configure的尾部:

checking for GLIB - version >= 2.24.0... yes (version 2.34.3)
checking for ffi... checking for FFI... yes
checking for GIO... yes
checking for GIOUNIX... yes
checking for GI... no
configure: error: Package requirements (glib-2.0 >= 2.24.0
        gobject-introspection-1.0 >= 0.10.2
    ) were not met:

No package 'gobject-introspection-1.0' found

Consider adjusting the PKG_CONFIG_PATH environment variable if you
installed software in a non-standard prefix.

Alternatively, you may set the environment variables GI_CFLAGS
and GI_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.
Run Code Online (Sandbox Code Playgroud)

我已经安装了gobject-introspection 1.34.2-3.如下所示:

$ whereis gobject-introspection
gobject-introspection: /lib/gobject-introspection /usr/lib/gobject-introspection
Run Code Online (Sandbox Code Playgroud)

和这里

$ whereis gobject-introspection-1.0
gobject-introspection-1: /usr/share/gobject-introspection-1.0
Run Code Online (Sandbox Code Playgroud)

我已经尝试在configure = to/lib /和/ usr/lib /(甚至/ usr/share /)中设置GI_CFLAGS和GI_LIBS,但无济于事.我还能做些什么来尝试解决这个问题?感谢您的时间!

nem*_*equ 51

你可能错过了开发包.包名称因分发而异,但它是包含/usr/lib/pkgconfig/gobject-introspection-1.0.pc(或/usr/lib64/pkgconfig/gobject-introspection-1.0.pc对于某些64位发行版)的包名称:

  • Fedora,CentOS,RHEL :gobject-introspection-devel
  • Debian,Ubuntu,Mint :libgirepository1.0-dev
  • Arch:gobject-introspection
  • FreeBSD:gobject-introspection
  • Cygwin:libgirepository1.0-devel
  • msys2:mingw-w64-x86_64-gobject-introspection和/或mingw-w64-i686-gobject-introspection


sim*_*ack 12

我得到了这个在cygwin上编译.你需要的包是:libgirepository1.0-devel.

在Ubuntu中它被称为 libgirepository1.0-dev