1
0
stack-orchestrator/scripts/developer-mode-setup.sh
David Boreham 55b2d3bd25 Update setuptools in case the version on the machine is old (#352)
Former-commit-id: 5ef37894ce62aa40814ce9f97d21e87926cd3244
2023-04-19 15:16:34 -06:00

13 lines
404 B
Bash
Executable File

#!/usr/bin/env bash
# Script to automate the steps needed to make a cloned project repo runnable on the path
# (beware of PATH having some other file with the same name ahead of ours)
if [[ -n "$CERC_SCRIPT_DEBUG" ]]; then
set -x
echo PATH is $PATH
fi
python3 -m venv venv
source ./venv/bin/activate
python3 -m pip install --upgrade pip setuptools wheel
pip install shiv
pip install --editable .