The Dash Userguide: everything that you need to know to be productive with Dash.
The Dash Userguide is hosted online at: https://plot.ly/dash.
To run an app locally:
- (optional) create and activate new virtualenv or conda env (Python 2.7):
pip install virtualenv
virtualenv venv
source venv/bin/activate
or, with conda:
conda create --yes -n dash_docs python=2.7
source activate dash_docs
pip install -r requirements.txt
gunicorn tutorial.run:server
- open http://127.0.0.1:8000 in your browser
on Windows systems waitress
can be a replacement for gunicorn
3. pip install waitress
4. waitress-serve --listen=*:8000 tutorial.run:server
5. open http://127.0.0.1:8000 in your browser
PRs accepted! The Dash user guide is itself a Dash app. Each file in tutorial
represents a "chapter" of the docs.
Changes to master will get deployed automatically.