Follow these steps to set up the project environment:
-
Create the Virtual Environment:
python3 -m venv bml
-
Initialize (Activate) the Virtual Environment:
source bml/bin/activate -
Install Required Dependencies:
pip install -r requirements.txt
-
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