📝 Day 1: Getting Started with Python

 


Welcome to Day 1 of your Python journey! 🚀 This 100-day Python learning program is proudly hosted by Codex Mentis, a community dedicated to making tech education accessible to everyone.

Before we dive into writing our first program, let’s ensure you have Python installed on your system.

Why Python?

Python is one of the most beginner-friendly programming languages, widely used in web development, automation, data science, cybersecurity, and more. By the end of this challenge, you'll have built a strong foundation to take on real-world projects!


🔹 Minimum System Requirements

To run Python smoothly, your computer should meet the following minimum requirements:

🖥️ Operating System: Windows 7+, macOS 10.9+, or any modern Linux distribution
💾 RAM: At least 4GB (8GB recommended for better performance)
💽 Storage: Minimum 10GB of free disk space
🖥️ Processor: 64-bit processor (Intel/AMD for Windows & Linux, Apple Silicon or Intel for macOS)
🌐 Internet Connection: Required for downloading Python and additional packages

If your system meets these specs, you’re good to go! If you're unsure, drop a message in the WhatsApp group for assistance.


🔧 Installing Python on Your System

Windows Installation

1️⃣ Download Python:

  • Go to the official Python website → Python Download
  • Click Download Python [latest version] (it auto-detects your system).

2️⃣ Run the Installer:

  • Open the downloaded .exe file.
  • Check the box "Add Python to PATH" (important!).
  • Click Install Now and wait for the process to complete.

3️⃣ Verify Installation:

  • Open Command Prompt (cmd) and type:
    python --version
  • If you see the Python version displayed, you’re all set! 🎉

Mac Installation

1️⃣ Check if Python is Pre-installed:

  • Open Terminal and type:

    python3 --version

  • If a version appears, Python is already installed!

2️⃣ Install Python (If Not Installed):

  • Download the macOS installer from here
  • Run the installer and follow the setup instructions.

3️⃣ Verify Installation:

  • Open Terminal and type:

    python3 --version

  • If you see the Python version displayed, congratulations! 🎉

Linux Installation (Ubuntu/Debian-based)

1️⃣ Open Terminal and Update Packages:

sudo apt update && sudo apt upgrade -y

2️⃣ Install Python:

sudo apt install python3 python3-pip -y

3️⃣ Verify Installation:

python3 --version

If you see the Python version, your setup is complete! 🎉


🎯 What’s Next?

Confirm Python is installed on your system.
Test it out by running python --version (Windows) or python3 --version (Mac/Linux).
Join us tomorrow as we write our first Python program!

If you face any issues, drop a message in the WhatsApp group—we’re here to help! 🚀


 

Comments