In the October 2023 update of ArcGIS Online, we released the 9.0 version of the notebook runtimes, including the latest ArcGIS API for Python 2.2.0 and other Python packages.
A manifest of the Python packages and versions included in the 9.0 runtime will be available on https://www.esri.com/en-us/arcgis/products/arcgis-notebooks/runtime-manifests in November 2023.
In the meantime, you can check all installed packages in a notebook environment using one of the following methods:
1. Check installed packages from the "Info" tab of a notebook.
- Open a notebook and save it as an item if it is not already saved as an item.
- On the top ribbon, click to open the "Info" tab.
- On the "Info" tab > "General" section, find and click on the notebook runtime hyperlink. A table of all installed packages will appear on the screen.
2. Check installed packages with `conda list`.
- In the notebook editor, run
!conda list
and the cell will output a list of installed packages in the current environment.
See graphic below for more details.