1、离线安装对应版本选择:
pip 包安装时版版本属性的含义_sslfk的博客-优快云博客
2、linux环境pip源配置,在~下,创建.pip目录,并再.pip创建pip.conf文件,编写对应的源即可
阿里云 http://mirrors.aliyun.com/pypi/simple/
中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/
豆瓣(douban) http://pypi.douban.com/simple/
清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/
中国科学技术大学 http://pypi.mirrors.ustc.edu.cn/simple/
[global]
index-url=http://pypi.douban.com/simple
[install]
trusted-host=pypi.douban.com
3、Cannot uninstall 'wrapt'. It is a distutils installed project错误,
pip install wrapt --ignore-installed
4、tensorflow is not a supported wheel on this platform
python -m pip install --upgrade pip (升级pip,高版本对应的协议不同)