/genaimongo

Primary LanguagePythonMIT LicenseMIT

Team T

This is a brief guide on how to create a virtual environment in Python and install the project dependencies from a requirements.txt file.

Prerequisites

  • Python
  • pip

Installation

  1. Clone the repository:

    git clone https://github.com/vanshb03/genaimongo
    
  2. Navigate to the project directory:

    cd genaimongo
  3. Create a virtual environment:

    python -m venv venv
  4. Activate the virtual environment:

    • For Windows:

      venv\Scripts\activate
    • For macOS/Linux:

      source venv/bin/activate
  5. Install the project dependencies from requirements.txt:

    pip install -r requirements.txt

Usage

  • Run the project:

    python main.py

License

This project is licensed under the MIT License.