-
curl: symbol lookup error - anaconda 이슈 해결프로그래밍/Linux 2019. 9. 30. 21:32728x90반응형
curl: symbol lookup error - anaconda 이슈 해결
curl 'http://localhost:9200/?pretty'
curl: symbol lookup error: /root/anaconda3/bin/../lib/libcurl.so.4: undefined symbol: SSLv2_client_method
???? 갑자기 뭐지????
# whereis curl
curl: /usr/bin/curl /usr/bin/X11/curl /usr/include/curl /usr/share/man/man1/curl.1.gz
전체 경로를 다 써서 /usr/bin/curl 'https://www.naver.com' 으로 하면 된다
뭐지 -_-;;
anaconda의 curl이 기존에 설치되어있던 curl보다 우선적으로 잡히고 있는데
여기서 에러가 나는 것 같다. 검색해보니 conda의 curl을 업데이트하거나 삭제하면 된다고 한다.
It seems this occurs because (1)
anaconda/bin
is prepended to the$PATH
, and (2) anaconda includes its ownanaconda/bin/curl
which then takes over subsequentcurl
invocations in the deploy script. This seems to be misconfigured by default for SSL, causing the error (apparently looking for CA data in a nonexistent path).일단 conda curl 업데이트를 먼저 해봤는데 다행히 문제없이 잘 되어서 해결 완료
conda update curl
참고:
https://github.com/ContinuumIO/anaconda-issues/issues/8971
https://github.com/lsst/lsstsw/issues/40
728x90반응형'프로그래밍 > Linux' 카테고리의 다른 글
자주 쓰는 리눅스 명령어 (0) 2021.02.20 sed 사용 예시 (0) 2020.01.08 shell script - for 문 사용 예시 (1) 2019.04.16 shell script 작성법 - 수식 계산 & 문자열 조작 (0) 2019.04.16 my.cnf 위치 찾기 (0) 2019.01.09