anastazie / dash-pycon-2018

Material for Dash workshop for PyCon CZ https://cz.pycon.org/2018/programme/detail/workshop/1/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Materials for Dash workshop for PyCon CZ 2018

Workshop info - PyCon CZ page

Programme

  1. Installation
  2. Introduction into data and Dash Presentation
  3. Dive into Dash using toy examples Tutorial
  4. Look closely at migration dash application

Installation

Note: Python 3.6 or higher can be used for this workshop.

Windows

Python

  1. Install Python via anaconda.
  2. Install GitBash using following command Anaconda prompt: conda install git

Python libraries

  1. Install dependencies located in requirements.txt using following command in GitBash: while read requirement; do conda install --yes $requirement || pip3 install $requirement; done < requirements.txt If 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

  1. Ubuntu, Debian sudo apt install python3 python3-pip

  2. MacOS brew install python3

    Note: if you do not have brew, install it using this tutorial.

Python libraries

pip3 install -r requirements.txt

Testing installation

  1. Clone this repository git clone git@github.com:anastazie/dash-pycon-2018.git or git clone https://github.com/anastazie/dash-pycon-2018.git
  2. In your terminal:
    cd dash-pycon-2018
    python3 app.py
    

If you are able to see running application it means that installation was successful :)

About

Material for Dash workshop for PyCon CZ https://cz.pycon.org/2018/programme/detail/workshop/1/


Languages

Language:Jupyter Notebook 99.9%Language:Python 0.1%