파이썬
윈도우10에서 파이썬 pip로 pandas 설치 안될때
에스크리토
2021. 4. 29. 17:32
반응형
윈도우에서 pip로 뭔가를 설치하려고 하면 아래와 같은 오류가 나면서 안될때가 있다.
Caused by SSLError(SSLCertVerificationError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: self signed certificate in certificate chain (_ssl.c:1123)
이런 경우에는
py -m pip install --trusted-host pypi.python.org --trusted-host files.pythonhosted.org --trusted-host pypi.org --upgrade pip
이렇게 업데이트를 해주고...
pip install --trusted-host pypi.python.org --trusted-host files.pythonhosted.org --trusted-host pypi.org pandas numpy matplotlib
이렇게 설치하면 된다.
파이썬은 프로그래밍은 쉬운데 뭔가 설치하는게 어렵다....ㅡ.ㅡ;;
개발하다 힘들면 눌러.
반응형