Please refer this link :
- Go to https://www.anaconda.com/products/individual and click the “Download” -button
- Download the Python 3.7 64-Bit (x86) Installer
- Run the downloaded bash script (.sh) file to begin the installation. See here for more details.
- -When prompted with the question “Do you wish the installer to prepend the Anaconda<2 or 3> install location to PATH in your /home//.bashrc ?”, answer “Yes”. If you enter “No”, you must manually add the path to Anaconda or conda will not work.
Select Windows or linked base command, In my case I have used Linux :
Create a new Anaconda virtual environment
Open a new Terminal window
Type the following command: The above will create a new virtual environment with name tensorflow
conda create -n tensorflow pip python=3.8
conda activate tensorflow

