1. HTTP 000 connection failed error
에러 예시
(base) C:\Users>conda update conda
Collecting package metadata (current_repodata.json): failed
CondaHTTPError: HTTP 000 CONNECTION FAILED for url <https://repo.anaconda.com/pkgs/main/win-64/current_repodata.json>
Elapsed: -
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.
If your current network has https://www.anaconda.com blocked, please file
a support request with your network engineering team.
'https://repo.anaconda.com/pkgs/main/win-64'
해결 방안
$ conda config --set ssl_verify False
혹은
$ conda config --set ssl_verify no
해결 방안 2
위와 같이 했는데도, Anaconda 버전이 본인의 windows10 과 호환되지 않을 수도 있다.
나같은 경우에 다른 컴퓨터에서 이런 문제가 생겨서 Anaconda 5.3.0 으로 다시 설치하고 컴퓨터를 껐다 켜주니 해결되었다.
2. Solving environment: failed with initial frozen solve. Retrying with flexible solve.
간혹 Windows 10 에 Anaconda 설치 후 모듈 설치를 위해 아래 커맨드를 입력했을 때,failed with initial frozen solve... 에러가 뜨며 무한반복될 때가 있다.
커맨드 예시
$ conda install [모듈명]
에러 예시
Collecting package metadata (current_repodata.json): done
Solving environment: failed with initial frozen solve. Retrying with flexible solve.
Solving environment: failed with repodata from current_repodata.json, will retry with next repodata source.
Collecting package metadata (repodata.json): done
Solving environment: failed with initial frozen solve. Retrying with flexible solve.
해결 방안
파이썬 버전을 다운그레이드한 새로운 환경을 생성해주고 그 안에서 모듈을 설치하니 문제가 해결되었다.
$ conda create -n geo_env python=3.6.8
$ conda activate geo_env
(geo_env) $ conda install geopandas
반응형
'컴퓨터 COMPUTER > Urban Data Analytics 데이터분석' 카테고리의 다른 글
(Windows10) ArcPy 를 Jupyter Notebook 과 연결하기 (0) | 2020.07.09 |
---|---|
내 Conda Environment를 Jupyter Notebook 에서 사용하기 (0) | 2020.07.07 |
[파이썬을 이용한 토픽모델링] step3. Gensim 과 Mallet 을 활용한 LDA 모델링 (Python) (1) | 2020.02.19 |
[파이썬을 이용한 토픽모델링] : step2. 웹크롤링 툴 (Octoparse) 을 이용해 데이터 수집하기 (1) | 2020.01.29 |
[파이썬을 이용한 토픽모델링] step 1. Python, Jupyter Notebook 설치 (0) | 2020.01.29 |
댓글