Skip to content

Commit 9cebcda

Browse files
committed
Add screenshot and update readme instructions
1 parent 310f336 commit 9cebcda

2 files changed

Lines changed: 36 additions & 3 deletions

File tree

apps/dash-datashader/README.md

Lines changed: 36 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,43 @@ Dash abstracts away all of the technologies and protocols required to build an i
55

66
Try out the [demo app here](https://dash-gallery.plotly.host/dash-datashader/).
77

8+
![screenshot](assets/datashader.png)
89

9-
To learn more check out our [documentation](https://dash.plot.ly).
1010

11-
### Contributing
11+
## Requirements
12+
We suggest you to create a separate virtual environment running Python 3 for this app, and install all of the required dependencies there. Run in Terminal/Command Prompt:
13+
14+
```
15+
git clone https://github.com/plotly/dash-sample-apps
16+
cd dash-sample-apps/apps/dash-oil-gas-ternary
17+
python3 -m virtualenv venv
18+
```
19+
In UNIX system:
20+
21+
```
22+
source venv/bin/activate
23+
```
24+
In Windows:
25+
26+
```
27+
venv\Scripts\activate
28+
```
29+
30+
To install all of the required packages to this environment, simply run:
1231

32+
```
33+
pip install -r requirements.txt
34+
```
1335

14-
Changes to master will get deployed automatically.
36+
and all of the required `pip` packages, will be installed, and the app will be able to run.
37+
38+
## How to use the app
39+
Run this app locally by:
40+
```
41+
python app.py
42+
```
43+
Open http://127.0.0.1:8050/ in your browser.
44+
45+
Drag a section of the top graph in order to display the zoomed in graph on the bottom.
46+
47+
To learn more check out our [documentation](https://dash.plot.ly).
37.8 KB
Loading

0 commit comments

Comments
 (0)