Created
July 21, 2018 18:07
-
-
Save addisaden/c4083a4210e7c8b55ea6923e7c866e04 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# create virtualenv if it doesn't exists | |
if [ ! -d ".venv" ] | |
virtualenv -p python3 .venv | |
cp /usr/local/lib/python3.5/dist-packages/cv* .venv/lib/python3.5/site-packages/ | |
fi | |
source .venv/bin/activate | |
pip install -r requirements.txt | |
python -m manuf --update |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment