Skip to content

Instantly share code, notes, and snippets.

@junaruga
Last active July 25, 2018 07:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save junaruga/7be29ef525b1111511812b00f98efe27 to your computer and use it in GitHub Desktop.
Save junaruga/7be29ef525b1111511812b00f98efe27 to your computer and use it in GitHub Desktop.
#!/bin/sh
set -e
for i in $(seq 2); do
test -d venv && rm -rf venv
python3 -m venv ./venv
source venv/bin/activate
time pip install .
deactivate
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment