Ubuntu에서 pip 시간 초과 문제 해결

오늘 pip install-r 요구 사항입니다.txt 시간 초과 문제는 다음과 같습니다.
ERROR: Exception:
During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/home/ckq/anaconda3/lib/python3.7/site-packages/pip/_internal/cli/base_command.py", line 186, in _main
    status = self.run(options, args)
    raise ReadTimeoutError(self._pool, None, "Read timed out.")
pip._vendor.urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host='files.pythonhosted.org', port=443): Read timed out.

처음에는 끊임없이 반복 조작을 시도했지만, 줄곧 안 된다는 것을 발견하였다
pip를 국내 소스로 수정합니다!!
mkdir .pip
cd .pip
sudo gedit pip.conf

내용 을 가치 있게 하다
[global]
timeout = 6000
index-url = https://pypi.doubanio.com/simple/
[install]
use-mirrors = true
mirrors = https://pypi.doubanio.com/simple/

결과 바로 다운로드 완료!!!
pip를 사용하여 다른 패키지를 설치합니다
 
sudo pip install   
# 
sudo pip install -U  
# 
sudo pip uninstall  
# 
pip list

참고
참고
Windows는 이것을 참고할 수 있습니다.

좋은 웹페이지 즐겨찾기