Skip to content

Getting Started Guide

Welcome to the Getting Started Guide! This guide will help you set up your environment and run your first program. Follow the steps below to get started.


Prerequisites

Before you begin, ensure you have the following installed on your machine:

  • Python (version 3.6 or later)
  • A code editor (e.g., Visual Studio Code)
  • Basic knowledge of Python programming

Step 1: Set Up Your Environment

  1. Install Python
  2. Download and install Python from the official website.
  3. During installation, ensure you check the option to add Python to your system PATH.

  4. Install a Code Editor

  5. Download and install Visual Studio Code.

Step 2: Create a Project Directory

  1. Open your terminal:
  2. Windows: Use Command Prompt.
  3. macOS/Linux: Use Terminal.

  4. Create a new directory for your project:

    mkdir my_project
    cd my_project