Preinstalled Packages
Overview
When writing scripts, it is generally recommended to use the packages that have been preinstalled with Seeq Data Lab rather than installing a pinned version locally. Here are the currently installed versions of packages that come standard with Seeq Data Lab for both the Python and R kernels.
Python
Starting from Python 3.11, only a minimal subset of packages necessary for SPy and Data Lab will come pre-installed. Any additional packages must be installed manually. For further details, refer to Installing Python Modules.
Version(s) : 3.8, 3.11
Ensure that you are in the correct Python environment from the terminal using the pyversion
command before proceeding. — Python Versions and Packages
For a complete set of installed packages, execute the following commands in a Data Lab terminal.
Python packages will be imported in the following order — locally installed packages will supersede system packages.
Locally Installed Packages
pip list
Globally installed packages
PYTHONUSERBASE=/seeq/python/global-packages pip list
Pre-installed system packages
For Python 3.8:
PYTHONUSERBASE=$PY38_ROOT pip list
For Python 3.11:
PYTHONUSERBASE=$PY311_ROOT pip list
R (Programming Language)
See Enabling R Language Support