본문 바로가기
컴퓨터 COMPUTER/Urban Data Analytics 데이터분석

Windows 10 - Anaconda, Geopandas 8.0 설치 중 HTTP 000 connection 문제, Failed with initial frozen solve 문제

by 매실이 maesiri 2020. 7. 7.

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

 

 

 

반응형

댓글