Skip to content

Commit d61752f

Browse files
committed
A few review updates
1 parent 87ce12a commit d61752f

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

notebooks/getting-started.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ $ conda install -c plotly plotly=4.0.0
5555

5656
This package contains everything you need to write figures to standalone HTML files.
5757

58-
> Note: No internet connection or account is required to use plotly.py. Prior to version 4, this library could operate in either an "online" or "offline" mode. The documentation tended to emphasize the online mode, where graphs get published to the Chart Studio web service. In version 4, all "online" functionality was removed from the `plotly` package and is now available as the separate, optional, `chart-studio` package (See below). plotly.py version 4 is "offline" only, and does not include any functionality for uploading figures to cloud services.
58+
> Note: **No internet connection, account, or payment is required to use plotly.py.** Prior to version 4, this library could operate in either an "online" or "offline" mode. The documentation tended to emphasize the online mode, where graphs get published to the Chart Studio web service. In version 4, all "online" functionality was removed from the `plotly` package and is now available as the separate, optional, `chart-studio` package (See below). **plotly.py version 4 is "offline" only, and does not include any functionality for uploading figures or data to cloud services.**
5959
6060
```python
6161
import plotly.graph_objects as go
@@ -169,6 +169,8 @@ functions in the `plotly.io` package. This functionality requires the
169169
installation of the plotly [orca](https://github.com/plotly/orca) command line utility and the
170170
[`psutil`](https://github.com/giampaolo/psutil) and [`requests`](https://2.python-requests.org/en/master/) Python packages.
171171

172+
> Note: The `requests` library is used to communicate between the Python process and a local orca server process, it is not used to communicate with any external services.
173+
172174
These dependencies can all be installed using conda:
173175
```
174176
$ conda install -c plotly plotly-orca psutil requests
@@ -226,9 +228,9 @@ Now that you have everything installed, you are ready to start reading and runni
226228

227229
For a complete overview of all of the ways that figures can be created and updated, see the [*Plotly User Guide for Python*](https://plot.ly/python/user-guide/).
228230

229-
For information on configuring figure layout options (e.g. axes, titles, legends, etc) see [*Layout Options*](https://plot.ly/python/#layout-options).
231+
For information on configuring figure layout options (e.g. axes, titles, legends, etc) and styling figures (e.g. colors, fonts, annotations, images, shapes, etc.), see [*Plotly Fundamentals*](https://plot.ly/python/plotly-fundamentals/#fundamentals).
230232

231-
For information on styling figures (e.g. colors, fonts, annotations, images, shapes, etc.), see [*Style Options*](https://plot.ly/python/#style-options). And for information on theming plotly figures, see [*Theming and templates with plotly for Python*](https://plot.ly/python/templates/).
233+
For information on theming plotly figures, see [*Theming and templates with plotly for Python*](https://plot.ly/python/templates/).
232234

233235
For information on all of the ways that plotly figures can be displayed, see [*Displaying plotly figures with plotly for Python*](https://plot.ly/python/renderers/).
234236

0 commit comments

Comments
 (0)