How to install Tensorflow on windows with anaconda?
I'm using Windows OS and Anaconda on my pc. I want to install TensorFlow and can't find how to make it.
I'm using Windows OS and Anaconda on my pc. I want to install TensorFlow and can't find how to make it.
If you use Windows operation system, you are lucky that you have anaconda on it, cause it would be harder instead.
So if you want to install Tensorflow on Windows take a look at this steps.
Run these commands
conda create -n tf tensorflow
conda activate tf
Or you can install the latest release of GPU Tensorflow on your pcconda create -n tf-gpu tensorflow-gpu
conda activate tf-gpu
Just it. Now you've got Tensorflow on your Windows PC.