🛠️ Step-by-Step: Installing Anaconda & Jupyter Notebook
🛠️ Step-by-Step: Installing Anaconda & Jupyter Notebook
If you want to be a professional Data Analyst or Researcher, Anaconda is your "Industrial Toolbox." It manages your environments and installs everything at once.
Step 1: Download the Anaconda Distribution
Go to the
.Anaconda Official Website Click the Download button. It will automatically detect if you are on Windows, Mac, or Linux.
Note: The file is large (approx. 600MB - 1GB), so ensure you have a stable internet connection.
Step 2: Running the Installer
Open the downloaded
.exe(Windows) or.pkg(Mac) file.3 Click Next and I Agree to the license.
Select "Just Me" (Recommended).
Choose Destination Folder: The default is usually fine.
4 Advanced Installation Options: * IMPORTANT: You will see a box that says "Add Anaconda3 to my PATH environment variable." * Recommendation: Anaconda recommends leaving this unchecked and using the "Anaconda Navigator" or "Anaconda Prompt" instead. This prevents Anaconda from interfering with other Python versions on your PC.
Step 3: Launching Jupyter Notebook
Once the installation is complete, you don't "open" Jupyter like a normal app. You launch it through the Anaconda ecosystem:
Method A: The Visual Way (Anaconda Navigator)
Search for "Anaconda Navigator" in your Start Menu/Launchpad and open it.
You will see a dashboard with several icons. Find Jupyter Notebook and click Launch.
A terminal window will pop up (don't close it!), and then your Web Browser will open showing your computer's folders.
Method B: The Pro Way (Anaconda Prompt) - RECOMMENDED
Search for "Anaconda Prompt" in your Start Menu.
Type the following command and hit Enter:
Bashjupyter notebookYour browser will open automatically.
Step 4: Creating Your First Notebook
In the browser window that opened, navigate to the folder where you want to save your work (e.g., Documents).
On the top right, click New $\rightarrow$ Python 3 (ipykernel).
You now have a "Cell." Type
print("Hello Tadashi's HUB!")and press Shift + Enter to run it.
💡 Why use Jupyter Notebook for Analytics?
For your students, explain the benefits:
Block Coding: You can run one piece of code at a time without restarting the whole program.
Visuals: Your graphs and charts appear directly below your code.
Documentation: You can write text (using Markdown) between your code blocks to explain your research findings—perfect for university projects!
⚠️ Common Troubleshooting
Browser doesn't open: If the browser doesn't open automatically, look at the "Anaconda Prompt" window. It will show a URL starting with
http://localhost:8888/.... Copy that link and paste it into Chrome or Edge."Command not found": Make sure you are using Anaconda Prompt, not the regular Windows Command Prompt.

Comments
Post a Comment