Debug School

rakesh kumar
rakesh kumar

Posted on

how to install jupyter notebbok and tensorflow

step1: install python
Install Python
Download and Install Python:

Visit the official Python website: python.org/downloads
Download the latest version of Python for Windows.
During installation, make sure to check the box that says "Add Python to PATH". This is crucial for Python and pip to be accessible from your terminal.

Image description

Verify the Installation:

python --version
pip --version
Enter fullscreen mode Exit fullscreen mode

step2
Install Jupyter Notebook
Once Python and pip are properly set up, you can install Jupyter Notebook:

Install Jupyter by running:

pip install notebook
Enter fullscreen mode Exit fullscreen mode

Start Jupyter Notebook:

jupyter notebook
Enter fullscreen mode Exit fullscreen mode

step3:You can install TensorFlow using the following command:

pip install tensorflow
Enter fullscreen mode Exit fullscreen mode
import tensorflow as tf
Enter fullscreen mode Exit fullscreen mode

Top comments (0)