Tensorflow has multiple versions, if I want to install a specific version in Anaconda, which command should I use.
This is probably the simplest way to do it:
pip install --ignore-installed --upgrade tensorflow==1.4
If you want to see all available versions, you can check out https://pypi.python.org/pypi/tensorflow/json
I would highly recommend you use virtualenv
or conda
to isolate your tensorflow installation, especially if you want to play-test different versions and the CPU/GPU versions.