pip install豆弁ミラーソースを使用してインストールプロセスを加速

490 ワード

pipはデフォルトで公式のソースを使用しているため、国内ではダウンロード速度が極めて遅い.デフォルトのソースをdoubanに変更するだけで、ダウンロード速度を飛ばすことができます.方法は次のとおりです.
  • ファイルPython Anaconda \Lib\site-packages\pip\_internal\models\index.py
  • PyPI = PackageIndex(
        'https://pypi.org/', file_storage_domain='files.pythonhosted.org'
    )
    

    に改心
    PyPI = PackageIndex(
        'https://pypi.douban.com/', file_storage_domain='files.pythonhosted.org'
    )
    

    できます.