Skip to content

gcivil-nyu-org/fall24-monday-team4

Repository files navigation

routepals

Description

A brief description of your project goes here.

Setup Instructions

Prerequisites

  • Ensure that Python is installed on your system. You can download it here.

Commands

# Clone the repository
git clone <repository-url>
cd <project-directory>

# For Windows: Create virtual environment
python -m venv venv

# For macOS/Linux: Create virtual environment
python3 -m venv venv

# For Windows: Activate virtual environment
.\venv\Scripts\activate

# For macOS/Linux: Activate virtual environment
source venv/bin/activate

# Install required packages
pip install -r requirements.txt

# Run the project
python <your_main_script.py>

# Deactivate the virtual environment
deactivate

# Update the requirements.txt if new packages are installed
pip freeze > requirements.txt