A browser-based weather dashboard (Python + Django + Dash + Plotly + React JS)
Parsing data from CSV files and visualizing on a (web)browser-based UI
-
Create a virtual env
-
Check if you have a virtual env virtualenv --version (Not Installed) Dont see a version number? run sudo pip install virtualenv (Installed) Make a folder within the highest file of the project mkdir ~/env
-
run virtualenv ~/env/my_new_app
-
cd into the bin folder cd ~/env/my_new_app/bin
-
activate the env source activate
-
pip install -r requirements.txt
python manage.py makemigrations
python manage.py migrate
python manage.py runserver