icarus/scripts/venv.sh

10 lines
233 B
Bash

#!/bin/bash
SCRIPT_DIR=$(readlink -f "$(dirname "$0")")
if [ ! -e "${SCRIPT_DIR}/../.venv" ]; then
python3 -m venv ${SCRIPT_DIR}/../.venv
fi
source ${SCRIPT_DIR}/../.venv/bin/activate
pip3 install protobuf
make setup-python
bash