본문 바로가기

anaconda3

anaconda 환경에서 ImportError: No module named pandas 해결법. anaconda 환경 하에서 pip install 명령으로 pandas 모듈을 인스톨하였음에도 불구하고, python을 실행해서 import pandas 명령을 내리면, 'ImportError: No module named pandas' 라는 에러 메시지가 날 때가 있음. 문제점은 3가지로 나눌 수 있을 것 같음. 문제점 1. pandas 모듈이 정말 안 깔렸다. 또는 다른 버전이 깔렸다. 문제점 2. 환경 변수(path)가 잘못되어서, pip가 다른 곳에 모듈을 설치했다. 문제점 3. conda에서 conda create로 가상환경을 만들 때에 pip가 제대로 복사되지않았다. (제대로 복사가 안 된 이유는 모르겠다. anaconda 2019-7월 버전의 버그일 수도...) 그럼 해결 방법을 써보자. 문.. 2019. 8. 7.
conda create 할 때에 https (SSL) 관련 에러가 나는 경우의 해결 방법 #2 아나콘다 인스톨 후에 conda create할 때에 아래와 같은 에러메시지가 나면, offline 모드 사용. 1 2 3 4 5 6 7 8 9 $ conda create -n py36 python=3.6 Fetching package metadata ... CondaHTTPError: HTTP None None for url Elapsed: None An HTTP error occurred when trying to retrieve this URL. HTTP errors are often intermittent, and a simple retry will get you on your way. SSLError(SSLError(SSLError("bad handshake: Error([('SSL routine.. 2019. 8. 6.
conda create 할 때에 https (SSL) 관련 에러가 나는 경우의 해결 방법. conda create 할 때에 https (SSL) 관련 에러가 나는 경우의 해결 방법. 에러 메시지.123456789$ conda create -n py36 python=3.6Fetching package metadata ...CondaHTTPError: HTTP None None for url Elapsed: None An HTTP error occurred when trying to retrieve this URL.HTTP errors are often intermittent, and a simple retry will get you on your way.SSLError(SSLError(SSLError("bad handshake: Error([('SSL routines', 'ssl3_get_ser.. 2018. 5. 25.