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¶
- Install Python
- Download and install Python from the official website.
-
During installation, ensure you check the option to add Python to your system PATH.
-
Install a Code Editor
- Download and install Visual Studio Code.
Step 2: Create a Project Directory¶
- Open your terminal:
- Windows: Use Command Prompt.
-
macOS/Linux: Use Terminal.
-
Create a new directory for your project:
mkdir my_project cd my_project