도구들/R,파이썬

파이썬 아나콘다 에러 failed with initial frozen solve. retrying with flexible solve

cactus 2022. 8. 24. 16:27

conda 를 통해서 패키지를 설치하려고 할 때(conda install ~~) 다음과 같은 에러가 발생할 경우

failed with initial frozen solve. retrying with flexible solve

 

conda 업데이트를 통해서 해결할 수 있다. 명령 프롬프트(cmd) 창에서 아래처럼 입력해서 conda 업데이트를 진행한다.

*윈도우 CMD, 아나콘다 프롬프트 전부 우클릭해서 '관리자 권한' 으로 실행해야 한다.

conda update --all

 

내 경우에는 geopandas를 설치하려고 한다.

https://geopandas.org/en/stable/getting_started/install.html

 

Installation — GeoPandas 0.11.0+0.g1977b50.dirty documentation

Installation GeoPandas depends for its spatial functionality on a large geospatial, open source stack of libraries (GEOS, GDAL, PROJ). See the Dependencies section below for more details. Those base C libraries can sometimes be a challenge to install. Ther

geopandas.org

geopandas 의 경우 먼저 설치되어있어야 하는 다른 패키지들이 있는데,(pandas, fiona, shapely, pyproj, rtree)

아래 명령어로 한번에 설치할 수 있다.

conda install pandas fiona shapely pyproj rtree

패키지들이 설치되었다면, 아래 명령어로 geopandas 설치를 진행한다.

conda install geopandas

 

반응형