I am running a set of commands and to run `pydeck` on jupyter notebook as per the documentation here: https://pydeck.gl/installation.html#enabling-pydeck-for-jupyter
However, it throws an `moduleNotFoundError` exception.
!pip install pydeck
!jupyter nbextension install --sys-prefix --symlink --overwrite --py pydeck
!jupyter nbextension enable --sys-prefix --py pydeck
File "/databricks/python3/lib/python3.9/site-packages/jupyter_core/application.py", line 269, in launch_instance
return super().launch_instance(argv=argv, **kwargs)
File "/databricks/python3/lib/python3.9/site-packages/traitlets/config/application.py", line 846, in launch_instance
app.start()
File "/databricks/python3/lib/python3.9/site-packages/notebook/nbextensions.py", line 980, in start
super().start()
File "/databricks/python3/lib/python3.9/site-packages/jupyter_core/application.py", line 258, in start
self.subapp.start()
File "/databricks/python3/lib/python3.9/site-packages/notebook/nbextensions.py", line 708, in start
self.install_extensions()
File "/databricks/python3/lib/python3.9/site-packages/notebook/nbextensions.py", line 679, in install_extensions
full_dests = install(self.extra_args[0],
File "/databricks/python3/lib/python3.9/site-packages/notebook/nbextensions.py", line 203, in install_nbextension_python
m, nbexts = _get_nbextension_metadata(module)
File "/databricks/python3/lib/python3.9/site-packages/notebook/nbextensions.py", line 1114, in _get_nbextension_metadata
m = import_item(module)
File "/databricks/python3/lib/python3.9/site-packages/traitlets/utils/importstring.py", line 38, in import_item
return __import__(parts[0])
ModuleNotFoundError: No module named 'pydeck'
A related question, what is the difference when I install libraries using `pip` from jupyter notebook vs the databricks GUI ?