You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Develop Data Visualization Interfaces in Python With Dash
2
+
3
+
This folder contains the source code developed in the tutorial [Develop Data Visualization Interfaces in Python With Dash](https://realpython.com/python-dash/).
4
+
5
+
The folder [`avocado_analytics_3`](avocado_analytics_3/) shows the final state of the source code.
6
+
7
+
The tutorial uses [`dash`](https://pypi.org/project/dash/) and [`pandas`](https://pypi.org/project/pandas/). You can install these packages by [creating and activating a virtual environment](https://realpython.com/python-virtual-environments-a-primer/) and then running pip:
8
+
9
+
```console
10
+
(venv) $ python -m pip install dash pandas
11
+
```
12
+
13
+
Alternatively, You can get an environment with the exact same versions of dependencies as used in the tutorial by installing from [`requirements.txt`](requirements.txt):
0 commit comments