programing

"0이 아닌 종료 상태" R 3.0.1 'XML' 및 'RCurl'

topblog 2023. 10. 20. 13:24
반응형

"0이 아닌 종료 상태" R 3.0.1 'XML' 및 'RCurl'

우분투 머신 13.10에 XML과 RCurl을 설치하는 데 약간 어려움을 겪고 있습니다.저는 오늘 sudo 업데이트와 업그레이드를 모두 수행했습니다.

저는 R에 래틀을 사용하려고 합니다.래틀 사용에 필요한 'XML'을 설치할 수 없습니다.이것은 불과 1년 후에 바로 여기서 질문했던 것과 거의 같은 질문이고 다른 OS입니다.다음은 제가 돌려받는 오류 메시지입니다.

> install.packages("RCurl")
Installing package into ‘/home/steven/R/x86_64-pc-linux-gnu-library/3.0’
(as ‘lib’ is unspecified)
trying URL 'http://cran.rstudio.com/src/contrib/RCurl_1.95-4.1.tar.gz'
Content type 'application/x-gzip' length 870915 bytes (850 Kb)
opened URL
==================================================
downloaded 850 Kb

* installing *source* package ‘RCurl’ ...
** package ‘RCurl’ successfully unpacked and MD5 sums checked
checking for curl-config... no
Cannot find curl-config
ERROR: configuration failed for package ‘RCurl’
* removing ‘/home/steven/R/x86_64-pc-linux-gnu-library/3.0/RCurl’
Warning in install.packages :
  installation of package ‘RCurl’ had non-zero exit status

The downloaded source packages are in
    ‘/tmp/RtmpUwBkbS/downloaded_packages’
> install.packages("XML")
Installing package into ‘/home/steven/R/x86_64-pc-linux-gnu-library/3.0’
(as ‘lib’ is unspecified)
trying URL 'http://cran.rstudio.com/src/contrib/XML_3.98-1.1.tar.gz'
Content type 'application/x-gzip' length 1582216 bytes (1.5 Mb)
opened URL
==================================================
downloaded 1.5 Mb

* installing *source* package ‘XML’ ...
** package ‘XML’ successfully unpacked and MD5 sums checked
checking for gcc... gcc
checking for C compiler default output file name... 
rm: cannot remove 'a.out.dSYM': Is a directory
a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables... 
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking how to run the C preprocessor... gcc -E
checking for sed... /bin/sed
checking for pkg-config... /usr/bin/pkg-config
checking for xml2-config... no
Cannot find xml2-config
ERROR: configuration failed for package ‘XML’
* removing ‘/home/steven/R/x86_64-pc-linux-gnu-library/3.0/XML’
Warning in install.packages :
  installation of package ‘XML’ had non-zero exit status

The downloaded source packages are in
    ‘/tmp/RtmpUwBkbS/downloaded_packages’

여기서 어떻게 진행해야 할지 잘 모르겠습니다.

Ubuntu에 curl과 xml을 설치하려면 다음과 같이 하십시오. 실행

sudo apt-get install libcurl4-openssl-dev libxml2-dev

R의 패키지 설치에 대한 오류 메시지는 curl 및 xml 라이브러리가 없거나 찾을 수 없음을 나타냅니다.

CentOS 6+에서는 를 사용할 수 있습니다.

sudo yum -y install curl
sudo yum -y install libcurl libcurl-devel
sudo yum -y install libxml2 libxml2-devel

를 사용하여 설치할 수 없는 사용자를 위해yum아니면apt-get, 제 경험을 공유합니다.

설치했습니다libcurl-openssl-dev소스코드를 다운받아서 컴파일을 하는 나 자신.나는 아직도 마주쳤습니다.Cannot find curl-config문제는...RCurl source code를 보고 a를 보기 전까지 어떻게 해야할지 몰랐습니다.CURL_CONFIG참조 중인 환경 변수입니다.제가 직접 설정해봤습니다..bashrc효과가 있었던 것 같습니다

export CURL_CONFIG=~/my/libcurl/curl-config

ubuntu 18.05의 경우 때때로 아래와 같이 문제가 있는 저장소가 실행됩니다.

sudoeded line에서 아래 저장소 추가

deb http://security.ubuntu.com/ubuntu 바이오닉-보안 메인

sudoedit /etc/apt/sources.list 
sudo apt-get update
sudo apt-get install libcurl4-openssl-dev --fix-broken
sudo apt-get install libcurl4-openssl-dev libxml2-dev

패키지 이름 수정

언급URL : https://stackoverflow.com/questions/20671814/non-zero-exit-status-r-3-0-1-xml-and-rcurl

반응형