conda create env -n ml_study python=3.9
로 새로운 가상환경을 생성하려고 하자 다음과 같은 에러가 발생했다.
CondaHTTPError: HTTP 000 CONNECTION FAILED for url <https://conda.anaconda.org/conda-forge/osx-arm64/python-3.9.16-hea58f1e_0_cpython.conda>
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.
ssl 관련 오류로, 다음과 같이 ssl로 인증하지 말라는 명령어를 입력한 뒤, 다시 생성하자 잘 동작하였다.
conda config --set ssl_verify no