Pythonを使用する場合は、さまざまなライブラリを使用する必要があります。通常はpipを使用して直接インストールします。これは、最も簡単で便利です。しかし、最大のクラッシュは、pipがデフォルトで使用するソースが公式ソースであり、公式ソースが海外にあるため、速度が驚くほど遅い場合があることです。通常の解決策は、ソースを置き換えることです。一般的な国内ソースは次のとおりです。
https://pypi.tuna.tsinghua.edu.cn/simple/ Tsinghua
http://pypi.doubanio.com/simple/ Douban
http://mirrors.aliyun.com/pypi/simple/ Ali
https://pypi.mirrors.ustc.edu.cn/simple/中国科学技術大学
http://mirrors.163.com/pypi/simple/ NetEase
**Windows **でソースを完全に置き換える
テキストの内容は次のとおりです。
[ global]
timeout = 6000
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
trusted-host = pypi.tuna.tsinghua.edu.cn
Linuxでソースを完全に置き換える
mkdir -p ~/.pip
vim ~/.pip/pip.conf
[ global]
timeout = 6000
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
trusted-host = pypi.tuna.tsinghua.edu.cn
ピップソースを一時的に変更する
pip install <パッケージ名-ihttps://pypi.tuna.tsinghua.edu.cn/simple --trusted-host pypi.tuna.tsinghua.edu.cn
以上が本稿の内容ですので、皆様のご勉強に役立てていただければ幸いです。