pip install 报错
ReadTimeoutError: HTTPSConnectionPool(host='files.pythonhosted.org', port=443): Read timed out.
可以更换国内源安装
1、临时换源
-i后面加地址
pip install mxnet-cu100==1.5.0 -i http://pypi.doubanio.com/simple/ --trusted-host pypi.doubanio.com
2、永久换源
pip install pip -U
pip config set global.index-url http://pypi.doubanio.com/simple/ --trusted-host pypi.doubanio.com