Installation
Both CARTO’s Python packages, pydeck-carto and carto-auth are available for installation from pip and conda. It is recommended to always use a virtual environment to prevent collisions with other libraries installed on the system.
Pydeck-carto is a wrapper of pydeck to use the CartoLayer to visualize data from one of your active data warehouse connections setup on the CARTO platform. Therefore, pydeck is a requirement that it will also have to be installed and it will be installed automatically as a dependency when installing pydeck-carto.
The carto-auth package provides two types of authentication methods with your CARTO account. Pydeck-carto installs the carto-auth package automatically, but you can also install it independently of pydeck-carto, in case you are not interested in creating visualizations.
In order to install the packages via pip, you can follow the next Python code:
#install both packages
pip install pydeck-carto
#install only carto-auth
pip install carto-auth
In order to install the packages via conda, you can follow the next Python code:
#install both packages
conda install -c conda-forge pydeck-carto
#install only carto-auth
conda install -c conda-forge carto-auth
In order to use our pydeck-carto package in a Jupyter notebook (or Jupyter lab), it requires that the pydeck package is also properly enabled.
jupyter nbextension install --sys-prefix --symlink --overwrite --py pydeck
jupyter nbextension enable --sys-prefix --py pydeck
To enable pydeck for JupyterLab (on Mac/Unix-like systems):
jupyter labextension install @jupyter-widgets/jupyterlab-manager
DECKGL_SEMVER=`python -c "import pydeck; print(pydeck.frontend_semver.DECKGL_SEMVER)"`
jupyter labextension install @deck.gl/jupyter-[email protected]$DECKGL_SEMVER
Last modified 4mo ago