Skip to content

Latest commit

 

History

History
56 lines (40 loc) · 1.22 KB

File metadata and controls

56 lines (40 loc) · 1.22 KB

🛠️ Installation Guide

Installing Python

Download the latest version of Python from python.org/downloads.

macOS:

Install via Homebrew:

brew install python

Or download the macOS installer from python.org/downloads/macos.

Windows:

Download and run the installer from python.org/downloads/windows. Make sure to check "Add Python to PATH" during installation.

Linux (Ubuntu/Debian):

sudo apt update && sudo apt install python3

Or see python.org/downloads/source for source builds.

Installing pip

pip is included with Python 3.4+. To verify it's installed:

pip --version

If pip is missing, see the official pip installation guide.

macOS/Linux:

curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
python3 get-pip.py

Windows:

python -m ensurepip --upgrade

Verify Installation

python --version
pip --version

Installing Project Dependencies

pip install -r requirements.txt