Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 600 Bytes

File metadata and controls

28 lines (21 loc) · 600 Bytes

Project Setup Instructions

Follow these steps to set up the project environment:

Commands to Set Up the Environment

  1. Create the Virtual Environment:

    python3 -m venv bml
  2. Initialize (Activate) the Virtual Environment:

    source bml/bin/activate
  3. Install Required Dependencies:

    pip install -r requirements.txt
  4. Configure neptune:

    touch .env
    echo -e "export NEPTUNE_PROJECT=your_workspace/your_project" >> .env
    echo -e "export NEPTUNE_API_TOKEN=your_neptune_api_token" >> .env