Materials for Dash workshop for PyCon CZ 2018
Programme
- Installation
- Introduction into data and Dash Presentation
- Dive into Dash using toy examples Tutorial
- Look closely at migration dash application
Installation
Note: Python 3.6 or higher can be used for this workshop.
Windows
Python
- Install Python via
anaconda. - Install GitBash using following command Anaconda prompt:
conda install git
Python libraries
- Install dependencies located in
requirements.txtusing following command in GitBash:while read requirement; do conda install --yes $requirement || pip3 install $requirement; done < requirements.txtIf this is not working try following in Anaconda Prompt:python -m pip install -r requirements.txt
for more details ee Stack Overflow discussion
Linux, Mac OS
Python
-
Ubuntu, Debian
sudo apt install python3 python3-pip -
MacOS
brew install python3Note: if you do not have
brew, install it using this tutorial.
Python libraries
pip3 install -r requirements.txt
Testing installation
- Clone this repository
git clone git@github.com:anastazie/dash-pycon-2018.gitorgit clone https://github.com/anastazie/dash-pycon-2018.git - In your terminal:
cd dash-pycon-2018 python3 app.py
If you are able to see running application it means that installation was successful :)