更改 python headers 目录以进行配置
Changing python headers directory for configure
我正在尝试使用 jhbuild
构建 gnome-weather
,但是 运行 构建过程导致以下错误:
checking for python extension module directory... ${exec_prefix}/lib64/python2.7/site-packages
checking for headers required to compile python extensions... ./configure: line 14697: /usr/local/bin/python-config: No such file or directory
not found
configure: error: Python headers not found
*** Error during phase configure of gobject-introspection: ########## Error running ./autogen.sh --prefix /home/pgolinski/jhbuild/install --disable-static --disable-gtk-doc *** [7/36]
[1] Rerun phase configure
[2] Ignore error and continue to build
[3] Give up on module
[4] Start shell
[5] Reload configuration
[6] Go to phase "wipe directory and start over"
[7] Go to phase "clean"
[8] Go to phase "distclean"
奇怪的是,错误提示说 Python headers 没有找到,即使我已经安装了 python-devel
。我设法在 usr/bin
中找到 python-config
那么如何更改其配置目录?或者也许问题出在其他地方? (我只想构建 gnome-weather
)
您可以在这里下载最新版本的 gnome-weather:
https://git.gnome.org/browse/gnome-weather/snapshot/gnome-weather-3.14.1.zip
解压后用这些命令编译:
- libtoolize
- 本地化
- 自动页眉
- 自动配置
- automake --add-missing --foreign
- ./配置
- 制作&&制作安装
这应该可以。8y3
如果有人在未来遇到类似的问题,以下是最终对我有用的方法:
PYTHON=/usr/bin/python jhbuild build gnome-weather
我正在尝试使用 jhbuild
构建 gnome-weather
,但是 运行 构建过程导致以下错误:
checking for python extension module directory... ${exec_prefix}/lib64/python2.7/site-packages
checking for headers required to compile python extensions... ./configure: line 14697: /usr/local/bin/python-config: No such file or directory
not found
configure: error: Python headers not found
*** Error during phase configure of gobject-introspection: ########## Error running ./autogen.sh --prefix /home/pgolinski/jhbuild/install --disable-static --disable-gtk-doc *** [7/36]
[1] Rerun phase configure
[2] Ignore error and continue to build
[3] Give up on module
[4] Start shell
[5] Reload configuration
[6] Go to phase "wipe directory and start over"
[7] Go to phase "clean"
[8] Go to phase "distclean"
奇怪的是,错误提示说 Python headers 没有找到,即使我已经安装了 python-devel
。我设法在 usr/bin
中找到 python-config
那么如何更改其配置目录?或者也许问题出在其他地方? (我只想构建 gnome-weather
)
您可以在这里下载最新版本的 gnome-weather: https://git.gnome.org/browse/gnome-weather/snapshot/gnome-weather-3.14.1.zip 解压后用这些命令编译:
- libtoolize
- 本地化
- 自动页眉
- 自动配置
- automake --add-missing --foreign
- ./配置
- 制作&&制作安装
这应该可以。8y3
如果有人在未来遇到类似的问题,以下是最终对我有用的方法:
PYTHON=/usr/bin/python jhbuild build gnome-weather