Last active
March 15, 2020 09:07
-
-
Save qtangs/7f44bc0e33d6ad4114eccb0bb2758735 to your computer and use it in GitHub Desktop.
Covid 19 Dashboard setup.sh
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
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