programing

Ubuntu 11.04에서 R 패키지를 설치할 수 없음

powerit 2023. 6. 7. 23:21
반응형

Ubuntu 11.04에서 R 패키지를 설치할 수 없음

저는 리눅스와 R이 처음입니다.

Ubuntu 11.04에 R 2.12를 설치했습니다.오늘 새 패키지를 설치하려고 해서 다음 명령을 실행했습니다.

install.packages('XML')

그러나 설치에 실패하여 다음과 같은 정보를 제공했습니다.

* installing *source* package ‘XML’ ...
checking for gcc... gcc
checking for C compiler default output file name... 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
No ability to remove finalizers on externalptr objects in this verison of R
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/spirit/R/i686-pc-linux-gnu-library/2.12/XML’

The downloaded packages are in
    ‘/tmp/RtmpoZYxnv/downloaded_packages’
Warning message:
In install.packages("XML") :
  installation of package 'XML' had non-zero exit status

저도 해봤어요.

sudo install.packages('XML')

그러나 동일한 오류 정보를 제공합니다.

누가 나에게 조언을 해줄 수 있습니까?

install.packages 메서드

Ubuntu 패키지를 설치해야 합니다.libxml2-dev셸 프롬프트에 다음을 입력합니다.

sudo apt-get update
sudo apt-get install libxml2-dev

당신은 특별한 것이 필요할 것입니다.sudo이를 위한 힘.

Ubuntu 패키지 방법

Richie와 Dirk가 언급했듯이 다음을 사용할 수도 있습니다.

sudo apt-get install r-cran-xml

이 길을 따라가면 R의 최신 버전과 관련 R 패키지가 있는지 확인할 수 있는 Runbu 소스 페이지를 확인하는 것이 좋습니다.이것은 Ubuntu의 LTS 버전을 사용하는 경우에 중요할 수 있습니다.

콜린에 의한 대답은 좁은 의미에서 정확하지만, 동시에 당신이 그냥 말할 수 있는 것처럼 틀렸습니다.

 sudo apt-get install r-cran-xml

XML은 Ubuntu에서 사용할 수 있는 CRAN 패키지 중 하나이기 때문입니다.apt-cache search r-cran-*다른 사람들을 만나보세요.

언급URL : https://stackoverflow.com/questions/7765429/unable-to-install-r-package-in-ubuntu-11-04

반응형