R语言绘图 | 安装包报错:‘configure‘ exists but is not executable、whether the C++ compiler supports the long lo

【stringi正确有效的安装方法】
参考链接:https://www.jianshu.com/p/c7f35b084014

conda install stringi
conda install stringr

一直安装不好stringi、stringr包,期间出了特别多的错误。
在网上搜了n多个方法都解决不了。
有过很多尝试。

  • 把window 上安装好的stringi移到Linux中的lib文件夹下。【失败】
Error in library.dynam(lib, package, package.lib) :
  shared object ‘stringi.so’ not found
Calls:  ... loadNamespace -> namespaceImport -> loadNamespace -> library.dynam
Execution halted
ERROR: lazy loading failed for package ‘reshape2’
* removing ‘/home/xxzhang/miniconda3/envs/r4/lib/R/library/reshape2’
  • **出错2:编译存在,但是无权限执行。 **
‘configure‘ exists but is not executable

解决方法,configure默认是在host的tmp文件夹下,但是因为我不是root用户,所以不可执行。只能在自己的路径下新建tmp文件夹,然后修改tmp的地址。

参考链接:

  • C ++编译器没啥功能
whether the C++ compiler supports the long long type...

https://github.com/gagolews/stringi/issues/452

这个链接下介绍了各种各样的解决策略,但是都没有用。

你可能感兴趣的:(r语言,开发语言,生物信息学)