Installing
-
2. Installing Anaconda
How to Install Anaconda Python on Ubuntu:
-
3. Using TensorFlow
Then to Use TensorFlow on Ubuntu
The Recommend way is of Creating a separate Virtual Environment to house the components.
So for the Stable Release CPU-only:conda create -n tf tensorflow
And then to Activate it:
conda activate tf
Instead for the enhanced GPU Release:
conda create -n tf-gpu tensorflow-gpu
conda activate tf-gpu
Especially relevant: this Software support CUDA 10 only.
So to Setup it for another CUDA Version use, for instance here below the 9 one:conda create -n tf-gpu-cuda9 tensorflow-gpu cudatoolkit=9.0
conda activate tf-gpu-cuda9
Contents