Error code 모음/4. Python errors

[Python Error] PackagesNotFoundError: The following packages are not available from current channels:

쟈누이 2021. 1. 18. 15:07
반응형

 

에러 원인

- conda install에서 가장 흔히 발생하는 오류 중 하나로 conda에서 패키지를 다운로드하려는 기본 채널에 패키지가 존재하지 않는 경우 발생

 

해결 방법

conda install -c conda-forge [패키지 명]

- C 채널 옵션에 conda-forge 를 주어서 패키지를 다운로드함.

- conda-forge 는 아나콘다에서 쉽게 설치할 수 있도록 검증된 파이썬 패키지들을 모아놓은 하나의 채널

 

참고 링크

stackoverflow.com/questions/48493505/packagesnotfounderror-the-following-packages-are-not-available-from-current-cha

 

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

I'm somewhat new to Python. I've used it in a bunch of projects, but haven't really needed to stray from its standard setup. I'm trying to install some new packages to get access to functions neces...

stackoverflow.com

 

반응형