Skip to content

Instantly share code, notes, and snippets.

@qtangs
Last active March 15, 2020 09:07
Embed
What would you like to do?
Covid 19 Dashboard setup.sh
cd covid-19-dashboard
python -m venv venv # or python3 -m venv venv
source venv/bin/activate
pip list # ensure that only pip and setuptools are listed
echo "dash==1.9.1" > requirements.txt
pip install -r requirements.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment