Skip to content

Latest commit

 

History

History
41 lines (31 loc) · 1.13 KB

File metadata and controls

41 lines (31 loc) · 1.13 KB

Installation & Setup Guide

This guide will help you set up the project for both development and testing environments.


1. Clone the Repository

git clone https://github.com/your-username/inventory-manager.git
cd inventory-manager

2. Create & Activate Virtual Environment

Linux/macOS

python3 -m venv venv
source venv/bin/activate

Windows (PowerShell)

python -m venv venv
venv\Scripts\activate

3. Install Required Packages for Development

pip install -r requirements.txt

Development Setup Summary

Step Command/Instruction
Clone repo git clone https://github.com/your-username/inventory-manager.git
Create venv python3 -m venv venv (Linux/macOS) or python -m venv venv (Windows)
Activate venv source venv/bin/activate or venv\Scripts\activate
Install dependencies pip install -r requirements.txt