我正在使用Ubuntu 14.04,我安装了tensorflow v0.10
。我想更新tensorflow
。我怎么能这样做?
我不明白这里描述的过程:https://www.tensorflow.org/install/migration!
答案 0 :(得分:1)
这是一个简单的方法
$ pip install --upgrade $TF_BINARY_URL
为python 2.7运行之后
export TF_BINARY_URL=https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.0.0-cp27-none-linux_x86_64.whl
for python 3.5
export TF_BINARY_URL=https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.0.0-cp35-cp35m-linux_x86_64.whl
这仅适用于CPU处理。如果您想使用GPU,则必须从此处获取不同的URL:https://www.tensorflow.org/install/install_linux#TF_PYTHON_URL
同时安装必要的CUDA驱动程序,包括CUDNN。
答案 1 :(得分:0)
我在升级时避免了问题,我建议先卸载tensorflow:
$ pip uninstall protobuf
$ pip uninstall tensorflow
并从此处重新安装最新版本:http://tflearn.org/installation/