ERROR: configuration failed for package 'RCurl'
TCGA Assembler의 의존 Package로 RCurl이 필요한 데
ERROR: configuration failed for package ‘RCurl’
메시지가 발생하였다.
Google에 검색해보니 OS별로 여러 가지 답변이 있었지만 결국에 나중에 답을 알고 보니 틀린 답도 꽤 있어서 블로그에 작성한다.
해결책은 RCurl FAQ 에 있었다.
FAQ 페이지에서 제시하는 원인은
- curl-config is not found in your path
- curl-config and related development libraries (libcurl) are not installed
이며
locate libcurl
또는
locate curl-config
로 libcurl이 설치되어있는 지 확인 후 설치되어있지 않다면 설치해주면 된다.
Ubuntu를 기준으로
sudo apt-get install libcurl4-openssl-dev
로 설치가 가능하다.
댓글
이 글 공유하기
다른 글
-
pip show / pip로 설치한 package 정보 확인
pip show / pip로 설치한 package 정보 확인
2016.05.06 -
Ubuntu man pages
Ubuntu man pages
2016.04.04 -
Python urllib.request / json 예제
Python urllib.request / json 예제
2015.10.29 -
Find Maximum Bipartite Subgraph(Biclique) C++
Find Maximum Bipartite Subgraph(Biclique) C++
2015.06.08