반응형
방법1.
--trusted-host 옵션을 통해 해당 설치 오류는 간단히 해결할 수 있습니다.
> pip install xxxxxxx --trusted-host pypi.org --trusted-host files.pythonhosted.org
방법 2.
윈도우에서는 %HOME%\pip\pip.ini 파일을 생성하고 아래 코드를 추가해 주시면 됩니다.
[global]
trusted-host = pypi.org
files.pythonhosted.org
반응형