🚀 **Want to install Jupyter Notebook from scratch?** In this step-by-step tutorial, I’ll show you **how to install Jupyter Notebook on Windows, Mac, and Linux** so you can start coding in Python for Data Science, Machine Learning, and AI.
Jupyter Notebook is a powerful, open-source tool used by **data scientists, developers, and students** for interactive computing, visualization, and code execution.
---
### **🔹 What You’ll Learn:**
✅ How to **install Python & pip** (if not installed)
✅ How to **install Jupyter Notebook** using pip
✅ How to **launch Jupyter Notebook** in your browser
✅ How to **fix common Jupyter installation issues**
✅ How to install **Jupyter with Anaconda** (optional)
---
### **🔹 Prerequisites:**
✔️ **Basic Python knowledge** (optional but helpful)
✔️ A computer running **Windows, Mac, or Linux**
---
## **Step 1: Install Python (Skip if Already Installed)**
Jupyter Notebook requires **Python 3.6 or later**.
### **🔹 Install Python on Windows:**
1️⃣ Download **Python** from [python.org](
2️⃣ Check ✅ **"Add Python to PATH"** during installation
3️⃣ Open **Command Prompt** and verify installation:
```bash
python --version
```
### **🔹 Install Python on Mac/Linux:**
Use Homebrew (Mac) or apt (Linux):
```bash
brew install python3 # Mac
sudo apt update && sudo apt install python3 # Linux
```
---
## **Step 2: Install Jupyter Notebook Using pip**
Once Python is installed, use **pip** to install Jupyter:
`
|