🧭 Goal:
- Install Anaconda and configure your development setup
- Create a dedicated conda environment called
blog_env - Launch Jupyter and run your first notebook
🛠 Step 1: Install Anaconda (Skip if already installed)
- Download it from https://www.anaconda.com/products/distribution
- Install it with default settings
- ✅ Optional (recommended): Check “Add Anaconda to PATH”
🧪 Step 2: Open Anaconda Navigator
- Open Anaconda Navigator (search from Start menu)
- Wait for it to load — you’ll see a dashboard with environments on the left
🧰 Step 3: Create Your Environment: blog_env
- Click “Environments” (left pane)
- Click the “Create” button at the bottom
- Name your environment:
blog_env - Choose Python version:
3.10or3.11 - Click Create
This will set up an isolated space with just Python installed.
🧱 Step 4: Install Key Packages into blog_env
Once the environment is created:
- Select
blog_envfrom the left pane - Click the green play button next to it → “Open Terminal”
- In the terminal, run this:
conda install jupyter pandas matplotlib seaborn
This installs your data analysis basics and the notebook system.
📓 Step 5: Launch Jupyter Notebook
Still inside blog_env:
- From Navigator’s Home tab, switch to
blog_envusing the dropdown at the top - Click Launch under “Jupyter Notebook”
This will open a browser window. From there:
- Click New → Python 3 (ipykernel). In the cell, type:
print("Hello from blog_env!")
Hit Shift + Enter to run the cell.
🗃 Optional: VS Code Setup
If you use VS Code:
- Install it from https://code.visualstudio.com
- Open VS Code → Install extensions:
- ✅ Python
- ✅ Jupyter
- Select your
blog_envby pressingCtrl+Shift+P→ “Python: Select Interpreter”
✅ Recap
You now have:
- Installed Anaconda and launched Navigator
- Created an isolated environment called
blog_env - Installed essential data analysis packages
- Opened your first Jupyter notebook
You’re ready to learn Python with a clean, professional setup!

