r语言 - install.package( "ggiraph" 时出错:"no matching function for call to ‘regex_replace" / RStudio on



我在R(基于linux的AWS实例上的RStudio服务器,新的RStu迪奥和R版本(中尝试安装ggigraph时遇到此错误。

在任何地方都找不到任何关于linux系统的建议(仅适用于OS X(。

有人遇到过同样的问题吗?你是如何解决的?

谢谢!

错误消息:

dsvg.cpp: In function ‘std::string compile_css(const string&, const char*, const string&, const char*, const char*, const char*)’:
dsvg.cpp:725:46: error: no matching function for call to ‘regex_replace(const char*&, std::regex&, std::string&)’
return std::regex_replace(css, pattern, cls);
^
dsvg.cpp:725:46: note: candidates are:
In file included from /usr/include/c++/4.8.2/regex:62:0,
from dsvg.cpp:16:
/usr/include/c++/4.8.2/bits/regex.h:2162:5: note: template<class _Out_iter, class _Bi_iter, class _Rx_traits, class _Ch_type> _Out_iter std::regex_replace(_Out_iter, _Bi_iter, _Bi_iter, const std::basic_regex<_Ch_type, _Rx_traits>&, const std::basic_string<_Ch_type>&, std::regex_constants::match_flag_type)
regex_replace(_Out_iter __out, _Bi_iter __first, _Bi_iter __last,
^
/usr/include/c++/4.8.2/bits/regex.h:2162:5: note:   template argument deduction/substitution failed:
dsvg.cpp:725:46: note:   deduced conflicting types for parameter ‘_Bi_iter’ (‘std::basic_regex<char>’ and ‘std::basic_string<char>’)
return std::regex_replace(css, pattern, cls);
^
In file included from /usr/include/c++/4.8.2/regex:62:0,
from dsvg.cpp:16:
/usr/include/c++/4.8.2/bits/regex.h:2182:5: note: template<class _Rx_traits, class _Ch_type> std::basic_string<_Ch_type> std::regex_replace(const std::basic_string<_Ch_type>&, const std::basic_regex<_Ch_type, _Rx_traits>&, const std::basic_string<_Ch_type>&, std::regex_constants::match_flag_type)
regex_replace(const basic_string<_Ch_type>& __s,
^
/usr/include/c++/4.8.2/bits/regex.h:2182:5: note:   template argument deduction/substitution failed:
dsvg.cpp:725:46: note:   mismatched types ‘const std::basic_string<_Ch_type>’ and ‘const char*’
return std::regex_replace(css, pattern, cls);
^
dsvg.cpp:726:1: warning: control reaches end of non-void function [-Wreturn-type]
}
^
...
^
make: *** [dsvg.o] Error 1
ERROR: compilation failed for package ‘ggiraph’
removing ‘/home/sandbox/R/x86_64-redhat-linux-gnu-library/3.6/ggiraph’
restoring previous ‘/home/sandbox/R/x86_64-redhat-linux-gnu-library/3.6/ggiraph’
Error: Failed to install 'ggiraph' from GitHub:
(converted from warning) installation of package ‘/tmp/RtmpU8zekV/file485f57d349a8/ggiraph_0.7.9.tar.gz’ had non-zero exit status

对于这个问题,我的解决方案是更新linuxGCC版本。在终端上键入脚本以更新GCC。

gcc -v            ## to check your gcc version(original centos 7 seems 2.5.4)

并参考本文更新开发者工具8https://www.softwarecollections.org/en/scls/rhscl/devtoolset-8/

在CentOS上,安装软件包CentOS release scl,可在以下存储库中获得:

sudo yum install centos-release-scl

在RHEL上,为您的系统启用RHSCL存储库:

sudo yum-config-manager --enable rhel-server-rhscl-7-rpms

安装集合:

sudo yum install devtoolset-8

开始使用软件集合:

scl enable devtoolset-8 bash

检查你的GCC版本是最新的:

gcc -v      #### Now GCC version should be 8.3.1 20190311

进入R以在终端上安装图形:

sudo R

安装ggigraph软件包:

install.packages('ggiraph', repos='http://cran.us.r-project.org') 

退出终端R

q() # type "n" to not save workspace image

并切换到rstudio控制台,库ggigraph包

library(ggiraph)

所有ggigraph功能现在都可以工作了!:D

最新更新