marker_separation/py/install.sh

8 lines
152 B
Bash
Raw Normal View History

2023-10-21 12:26:58 +00:00
#!/bin/bash
if [ ! -d env ]; then
python -m venv env
fi
source env/bin/activate
python -m pip install -r requirements.txt
echo source env/bin/activate