Covid 19 Dashboard setup.sh
This file contains 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