반응형

conda에서 fastapi 설치시 아래 오류가 날 수 있다.

 

PackagesNotFoundError: The following packages are not available from current channels: - fastapi

 

패키지 검색을 추가하도록 아래처럼 명령하고 설치를 진행하자.

 

conda config --append channels conda-forge


conda install fastapi
conda install "uvicorn[standard]"

 

 

반응형

+ Recent posts