How can I install TensorFlow in my PC? I am using python with Jupyter notebook using Anaconda. I have Python 3.10.1 installed and Anaconda version 2021.11 (Python 3.9.7 64-bit) also installed. Kindly let me know exactly what should I do to install TensorFlow in my PC.
CodePudding user response:
In Command Prompt, you can do:
$ pip install --upgrade pip
$ pip install tensorflow
CodePudding user response:
pip install tensorflow
is mainly the thing you are looking for.
Either
- Go to your jupyter notebook, create a notebook and then run this cell
!pip install tensorflow
Or
- Go to your terminal; preferably Anaconda Terminal/Prompt and then run
pip install tensorflow