1
我目前使用tensorflow版本r0.7的virtualenv intallation。我想在virtualenv中升級到r0.9。這是做什麼的程序?更新tensorflow的virtualenv安裝的過程是什麼?
我目前使用tensorflow版本r0.7的virtualenv intallation。我想在virtualenv中升級到r0.9。這是做什麼的程序?更新tensorflow的virtualenv安裝的過程是什麼?
下面應該工作:
# Once inside your virtualenv
(venv) $ pip uninstall -qy tensorflow
(venv) $ pip install -U https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.9.0-cp27-none-linux_x86_64.whl
也就是說,假設你要的CPU版本和使用Python 2.7。請查看here以瞭解其他版本的pip軟件包。