프록시가 필요한 환경에서 pip를 설정할 때 proxy
, tursted-host
를 설정해야 합니다.
# pip로 xgboost 설치
pip --proxy http://{proxy-ip}:{proxy-port} --trusted-host pypi.python.org --trusted-host pypi.org --trusted-host files.pythonhosted.org install xgboost
반응형
'python' 카테고리의 다른 글
[python] ffi.h: No such file or director 오류 해결 방법 (0) | 2020.09.29 |
---|---|
[python] _mysql.c: Cannot open include file my_config.h 오류 해결 방법 (0) | 2020.09.29 |
[numpy] 넘파이(numpy)의 random 함수를 이용하여 테스트 데이터 생성하는 방법 (0) | 2020.04.23 |
[python] 파이썬 상속과 __init__ 을 이용한 부모 호출 예제 (0) | 2019.03.02 |
[python] beautifulsoup을 이용하여 웹크롤링(crawling) 하는 샘플 (0) | 2019.02.14 |