如何配置安装路径或者设置环境变量?

如何配置安装路径或者设置环境变量?

我打算在 Ubuntu 14.04 LTS 中安装 APE,这是一个用于伪势生成的简单代码。我在运行 ./configure 时收到此错误消息:

checking for gsl-config... no
checking for GSL - version >= 1.0... no
*** The gsl-config script installed by GSL could not be found
*** If GSL was installed in PREFIX, make sure PREFIX/bin is in
*** your path, or set the GSL_CONFIG environment variable to the
*** full path to gsl-config.
configure: error: could not find required gsl library

我检查了一下,发现 GSL 已经安装了:

:~/Programas/ape-2.2.0$ dpkg -l | grep gsl
ii  libgsl0ldbl                    1.16+dfsg-1ubuntu1 
            i386     GNU Scientific Library (GSL) -- library package

我有这个库,但安装程序找不到它。有什么帮助吗?

提前致谢

答案1

gsl-config在这种情况下,GSL 包含和库环境由程序(一种专门用于 GSL 的迷你程序)提供,pkg-config例如

$ gsl-config --cflags --libs
-I/usr/include
-L/usr/lib -lgsl -lgslcblas -lm

gsl-config程序由包提供,libgsl0-dev因此错误告诉您需要安装该包。

相关内容