我正在尝试在 Ubuntu 18.04 上安装 gsl 2.5。遵循以下步骤:
1.从http://ftpmirror.gnu.org/gsl/下载最新的 gsl pkg 。使用归档管理器解压缩 tarball,创建一个名为“gsl-release-2-5”的文件夹,打开终端并 cd 到该文件夹。
2.
$ cd /home
$ cd ~/gsl_pkg/gsl-release-2-5
$ sudo apt install libgsl-dev
$ ./configure
error:: bash: ./configure: No such file or directory
收到上面的错误。
我现在应该采取哪些步骤来缓解这种情况并成功安装 gsl 2.5?
编辑:
还执行了 cmd :
$ autoreconf -i -f -v
结果如下-
autoreconf:configure.ac:不使用 Gettext
autoreconf:运行:aclocal --force
autoreconf:configure.ac:跟踪
autoreconf:configure.ac:不使用 Libtool
您提供的 ftpmirror.gnu.org/gsl 站点是 eror:404 。https://mirror.freedif.org/GNU/gsl/gsl-latest.tar.gz上提供的最新 gsl 链接并解压。
要编译和构建包,请执行以下操作:
cd ~/yourFolderOf_gsl/gsl-releaseVersions
./configure && make && make install
./autogen.sh: 10: ./autogen.sh: autoreconf: not found Now use ./configure --enable-maintainer-mode
。您需要安装构建依赖项。运行sudo apt-get install autoconf automake pkg-config libgtk-3-dev
并执行 autogen.sh./configure && make && make install
希望这可以帮助。