pip 느리거나 실패

2715 단어 Python

원인:

  • pip 공식 서버 접근이 느립니다
  • 회사 내망 필터

  • | 저작권 성명: itisyang, 블로거의 허락 없이 전재할 수 없습니다.https://blog.csdn.net/itisyang/article/details/81431181

    처리 방법

  • pypi환원, 아리 추천
  • 구름거울상

  • pip 국내의 일부 거울
      https://mirrors.aliyun.com/pypi/simple/ 
      https://pypi.mirrors.ustc.edu.cn/simple/ 
     (douban) https://pypi.douban.com/simple/ 
      https://pypi.tuna.tsinghua.edu.cn/simple/ 
      https://pypi.mirrors.ustc.edu.cn/simple/

    소스 수정 방법:
    임시 사용: pip를 사용할 때 뒤에 - i 파라미터를 추가하여 pip 원본 eg: pip install scrapy - i를 지정할 수 있습니다.https://pypi.tuna.tsinghua.edu.cn/simple
    영구 수정:linux:수정 ~/.pip/pip.conf (아니면 하나 만들기), 내용은 다음과 같습니다.
    [global]
    index-url = https://pypi.tuna.tsinghua.edu.cn/simple

    windows: 사용자 디렉터리에 pip 디렉터리를 직접 만듭니다. 예를 들어 C:\Users\xx\pip, 새 파일pip.ini, 내용은 다음과 같다
    [global]
    index-url = https://pypi.tuna.tsinghua.edu.cn/simple
  • 미니콘다나 아나콘다를 설치하고 국내 렌즈 원본을 바꿉니다

  • 예를 들어 칭화대학교 미러링으로 교체
    conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
    conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
    conda config --set show_channel_urls yes

    또는 직접 변경합니다.condarc

    이상 과정


    ssl 오류: ssl 설정을false로 설정

    좋은 웹페이지 즐겨찾기