Skip to content

anastazie/dash-pycon-2018

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
 
 

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/

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published