Skip to content

Commit 34af731

Browse files
committed
Update getting-started.md
1 parent 070f279 commit 34af731

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

doc/python/getting-started.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -66,14 +66,15 @@ or `conda`:
6666
```
6767
$ conda install -c plotly plotly=5.24.1
6868
```
69-
This package contains everything you need to write figures to standalone HTML files.
7069

71-
```python
72-
import plotly.express as px
73-
fig = px.bar(x=["a", "b", "c"], y=[1, 3, 2])
74-
fig.write_html('first_figure.html', auto_open=True)
70+
If you want to use Plotly Express, install its required dependencies with:
71+
72+
```
73+
pip install plotly[express]==5.24.1
7574
```
7675

76+
You'll also need to install a [supported dataframe library](/python/px-arguments#supported-dataFrame-types).
77+
7778
### Plotly charts in Dash
7879

7980
[Dash](https://plotly.com/dash/) is the best way to build analytical apps in Python using Plotly figures. To run the app below, run `pip install dash`, click "Download" to get the code and run `python app.py`.

0 commit comments

Comments
 (0)