Skip to content

Latest commit

 

History

History
37 lines (20 loc) · 999 Bytes

installation-setup.md

File metadata and controls

37 lines (20 loc) · 999 Bytes

Installation Set-up

  1. Install Python

Download and install the latest version of Python from the official website: https://www.python.org/downloads/. During installation, make sure to check the option that says "Add Python to PATH" to run Python from the command line.

  1. Install Visual Studio Code (VSCode)

Download and install VSCode from the official website: https://code.visualstudio.com/. After installation, launch VSCode.

  1. Install Python Extension for VSCode

Open VSCode, go to the Extensions view (Ctrl+Shift+X), search for "Python," and install the official "Python" extension by Microsoft.

  1. Open Your Code

In VSCode, go to "File" > "Open Folder" and navigate to the directory where your code is located. Click "Open."

Prerequisites

Update pip to the latest version:

python -m pip install -U pip

Install the required Python libraries:

python -m pip install pandas matplotlib pathlib scipy seaborn