This repository has been archived on 2024-07-19. You can view files and clone it, but cannot push or open issues or pull requests.
codesearch/script/bootstrap

16 lines
492 B
Text
Raw Normal View History

VENV=codesearch.venv
#################################################################
# Bootstrapping sets up the Python 3.8 venv that allows the use #
# of the invoke commands. #
#################################################################
{
pyenv virtualenv-delete -f $VENV
pyenv virtualenv $VENV &&
pyenv activate $VENV &&
python -m pip install -U pip &&
pip install -r requirements.txt &&
echo "✨ Good to go! ✨"
}