Skip to content

Commit 1a2d606

Browse files
committed
Add setup instructions.
1 parent 8504ec4 commit 1a2d606

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed

README.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11

22
This notebook was used to demo some plotting libraries at BioInfoSummer 2017 and in my [PyConAU 2017 talk](https://www.youtube.com/watch?v=6d3Yk7a2qYI).
33

4+
If you'd like to run this Jupyter Notebook and/or Dash app yourself, you should be able to install all required packages using:
5+
6+
```
7+
python -m venv env
8+
source env/bin/activate
9+
pip install -r requirements.txt
10+
```
11+
412
Depending on what version of Jupyter you're running, you may need to launch this notebook with a higher data rate limit so that visualisation libraries are not throttled in communicating with the browser, e.g.
513

614
```jupyter notebook --NotebookApp.iopub_data_rate_limit=10000000```

requirements.txt

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
jupyter
2+
pandas
3+
flask
4+
matplotlib
5+
seaborn
6+
bokeh
7+
holoviews
8+
plotly
9+
dash
10+
dash-renderer
11+
dash-html-components
12+
dash-core-components

0 commit comments

Comments
 (0)