:book: The Official Dash Userguide & Documentation
The Dash Userguide: everything that you need to know to be productive with Dash.
The Dash Userguide is hosted online at: https://plotly.com/dash. A PDF version is also available.
To run an app locally:
pip install virtualenv virtualenv venv source venv/bin/activate
or, with conda:
conda create --yes -n dash_docs source activate dash_docs
pip install -r requirements.txt
gunicorn --preload index:server
Alternatively, for development purposes, you can run:
while true; do IGNORE_DASH_BIO=true python index.py; sleep 2; done
The
while trueloop restarts Dash when there's syntax errors outside of the callbacks, and
IGNORE_DASH_BIO=trueconstant prevents the loading of heavy Dash Bio examples, which makes hotreloading faster.
on Windows systems
waitresscan be a replacement for
gunicorn
pip install waitress
waitress-serve --listen=*:8000 index:server
PRs accepted! The Dash user guide is itself a Dash app. Each file in
tutorialrepresents a "chapter" of the docs.
Changes to master will get deployed automatically.