cmd進行pip安裝時出現
You are using pip version 18.1, however version 19.0.1 is available. You should consider upgrading via the 'python -m pip install --upgrade pip' command.
說明需要更新pip包,根據提示
python -m pip install --upgrade pip 更新
產生:
pip._vendor.urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host='files.pythonhosted.org', port=443): Read time d out.
原因:
在下載python庫的時候,由於國內網絡原因,python包的下載速度非常慢,查看pip 文檔,只要在 pip的時候控制超時即可, 具體參數為 --default-timeout=100, 后面的時間可以自己指定。
解決:
pip install --default-timeout=1000 --no-cache-dir -r requirements.txt
也可以使用國內的源進行下載:
調用清華的源:
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple 模塊名
