Skip to content

Commit d911ea4

Browse files
committed
remove $ from install commands
1 parent 2d36a86 commit d911ea4

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

doc/python/getting-started.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -58,13 +58,13 @@ We also encourage you to join the [Plotly Community Forum](http://community.plot
5858
`plotly` may be installed using `pip`:
5959

6060
```
61-
$ pip install plotly
61+
pip install plotly
6262
```
6363

6464
or `conda`:
6565

6666
```
67-
$ conda install -c conda-forge plotly
67+
conda install -c conda-forge plotly
6868
```
6969

7070
If you want to use Plotly Express, install its required dependencies with:
@@ -97,19 +97,19 @@ IFrame(snippet_url + 'getting-started', width='100%', height=1200)
9797
To use `plotly` in [JupyterLab](https://jupyterlab.readthedocs.io/en/stable/), install the `jupyterlab` and `anywidget` packages in the same environment as you installed `plotly`, using `pip`:
9898

9999
```
100-
$ pip install jupyterlab anywidget
100+
pip install jupyterlab anywidget
101101
```
102102

103103
or `conda`:
104104

105105
```
106-
$ conda install jupyterlab anywidget
106+
conda install jupyterlab anywidget
107107
```
108108

109109
Launch JupyterLab with:
110110

111111
```
112-
$ jupyter lab
112+
jupyter lab
113113
```
114114

115115
and display plotly figures inline:
@@ -154,7 +154,7 @@ conda install "notebook>=7.0" "anywidget>=0.9.13"
154154
These packages contain everything you need to run a Jupyter notebook...
155155

156156
```
157-
$ jupyter notebook
157+
jupyter notebook
158158
```
159159

160160
and display plotly figures inline using the notebook renderer...
@@ -191,13 +191,13 @@ The [`kaleido`](https://github.com/plotly/Kaleido) package has no dependencies a
191191
using pip...
192192

193193
```
194-
$ pip install --upgrade kaleido
194+
pip install --upgrade kaleido
195195
```
196196

197197
or conda.
198198

199199
```
200-
$ conda install -c plotly python-kaleido
200+
conda install -c plotly python-kaleido
201201
```
202202

203203
#### Extended Geo Support
@@ -207,13 +207,13 @@ choropleth figure factory is one such example. These shape files are distributed
207207
separate `plotly-geo` package. This package can be installed using pip...
208208

209209
```
210-
$ pip install plotly-geo==1.0.0
210+
pip install plotly-geo==1.0.0
211211
```
212212

213213
or conda.
214214

215215
```
216-
$ conda install -c plotly plotly-geo=1.0.0
216+
conda install -c plotly plotly-geo=1.0.0
217217
```
218218

219219
See [_USA County Choropleth Maps in Python_](/python/county-choropleth/) for more information on the county choropleth figure factory.

0 commit comments

Comments
 (0)