pip指定版本和源

pip指定版本
需添加"==版本号",如:

pip install tensorflow==1.12.0

pip指定安装源
需添加"-i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com",习惯使用豆瓣pip源,如:

pip install tensorflow -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com

你可能感兴趣的:(TensorFLow)