Skip to content

Instantly share code, notes, and snippets.

@allieus
Last active May 27, 2019 21:29
Show Gist options
  • Save allieus/b7ea5797459b47c91589c4253ad2b2b9 to your computer and use it in GitHub Desktop.
Save allieus/b7ea5797459b47c91589c4253ad2b2b9 to your computer and use it in GitHub Desktop.

pip의 경우

pip install 시, SSL 인증서 오류에 대한 대처

아래 코드로 pip 폴더를 생성하고

echo %APPDATA%\pip

mkdir %APPDATA%\pip

윈도우 탐색기를 띄우고

start %APPDATA%\pip

%APPDATA%\pip 경로에 pip.ini 복사합니다.

conda

conda config --set ssl_verify false 명령으로, c:\Users\사용자명\ 경로에 .condarc 파일을 생성

[global]
trusted-host = pypi.python.org
pypi.org
files.pythonhosted.org
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment