Package description gsl-config is a part of gsl library. I am trying to install gsl package in R (built from source - not from pointless repository) but I get an error gsl-config not found. I have gsl and gsl-static installed. Still it f...
configure: error: gsl-config not found, is GSL installed? ERROR: configuration failed for package ‘gsl’ removing ‘/root/R/4.0.5/gsl’ The downloaded source packages are in ‘/rdata/R_temp/RtmpHRkQIj/downloaded_packages’ Warning message: In install.packages("gsl") : installation of pack...
报错如下: * installing *source* package ‘gsl’ ... ** package ‘gsl’ successfully unpacked and MD5 sums checked...** using staged installation checking for gsl-config...
/R/x86_64-pc-linux-gnu-library/3.4’trying URL 'https://cran.rstudio.com/srcerror: gsl-config not found, is GSL installed?ERROR: configuration failed for package ‘gsl’ * removing ‘/home/rstudio 浏览1提问于2017-06-30得票数 1 ...
make: gsl-config: Command not found ocaml do_const.ml --mli > lib/const.mli /bin/sh:gsl-config: command not found Exception: End_of_file. make: *** [post-conf] Error 2 E: Failure("Command 'make post-conf' terminated with error code 2")...
AC_PATH_PROG([GSL_CONFIG],[gsl-config])iftest"${GSL_CONFIG}"!="";thenGSL_CFLAGS=`${GSL_CONFIG}--cflags`GSL_LIBS=`${GSL_CONFIG}--libs`elseAC_MSG_ERROR([gsl-config not found, is GSL installed?])fiAC_SUBST(GSL_CFLAGS)AC_SUBST(GSL_LIBS)AC_CONFIG_FILES([src/Makevars])AC_OUTPUT ...
CONFIG_HEADERS = CONFIG_LINKS = CONFIG_COMMANDS = $ ./config.status on hexvio-dev-pc config.status:1211: creating Makefile config.status:1211: creating gsl_version.h config.status:1211: creating gsl.spec config.status:1211: creating blas/Makefile config.status:1211: creating blo...
make: gsl-config: Command not found ocaml do_const.ml --mli > lib/const.mli /bin/sh:gsl-config: command not found Exception: End_of_file. make: *** [post-conf] Error 2 E: Failure("Command 'make post-conf' terminated with error code 2")...
After I typed "./configure", there is an error:error: GSL CBLAS library not foundI installed GSL 1.9 library --- When I was installing, it was like this: make install Making install in gsl make[1]: Entering directory `myDir/gsl-1.9/gsl' [code]...View...
例如,在决定BSD中的hypot函数是否可用,你可以在自己的应用软件的“config,h”文件中中包括一个宏定义, /* Substitute gsl_hypot for missing system hypot*/ #ifndef HAVE_HYPOT #define hypot gsl_hypot #endif 这个应用源文件可以使用include命令#include<config.h>,当hypot不可用时,可以用gsl_hypot去代替每个出...