diff --git a/python/getting-started.md b/python/getting-started.md index 23f5af615..013628056 100644 --- a/python/getting-started.md +++ b/python/getting-started.md @@ -44,12 +44,12 @@ Thanks to deep integration with the [orca](https://github.com/plotly/orca) image plotly.py may be installed using pip... ``` -$ pip install plotly==4.2.1 +$ pip install plotly==4.3.0 ``` or conda. ``` -$ conda install -c plotly plotly=4.2.1 +$ conda install -c plotly plotly=4.3.0 ``` This package contains everything you need to write figures to standalone HTML files. @@ -107,13 +107,13 @@ For use in [JupyterLab](https://jupyterlab.readthedocs.io/en/stable/), install t packages using pip... ``` -$ pip install jupyterlab==1.0 "ipywidgets>=7.5" +$ pip install jupyterlab==1.2 "ipywidgets>=7.5" ``` or conda. ``` -$ conda install jupyterlab=1.0 "ipywidgets>=7.5" +$ conda install jupyterlab=1.2 "ipywidgets>=7.5" ``` Then run the following commands to install the required JupyterLab extensions (note that this will require [`node`](https://nodejs.org/) to be installed): @@ -126,13 +126,13 @@ export NODE_OPTIONS=--max-old-space-size=4096 set NODE_OPTIONS=--max-old-space-size=4096 # Jupyter widgets extension -jupyter labextension install @jupyter-widgets/jupyterlab-manager@1.0 --no-build +jupyter labextension install @jupyter-widgets/jupyterlab-manager@1.1 --no-build # jupyterlab renderer support -jupyter labextension install jupyterlab-plotly@1.2.0 --no-build +jupyter labextension install jupyterlab-plotly@1.3.0 --no-build # FigureWidget support -jupyter labextension install plotlywidget@1.2.0 --no-build +jupyter labextension install plotlywidget@1.3.0 --no-build # Build extensions (must be done to activate extensions since --no-build is used above) jupyter lab build