admin workspace python Command Group¤
List, install, or uninstall python packages.
Python packages are used to extend the DataIntegration workspace with python plugins. To get a list of installed packages, execute the list command.
Warning
Installing packages from unknown sources is not recommended. Plugins are not verified for malicious code.
admin workspace python install¤
Install a python package to the workspace.
This command is essentially a pip install
in the remote python environment.
You can install a package by uploading a source distribution .tar.gz file, by uploading a build distribution .whl file, or by specifying a package name, i.e., a pip requirement specifier with a package name available on pypi.org (e.g. requests==2.27.1
).
admin workspace python uninstall¤
Uninstall a python package from the workspace.
This command is essentially a pip uninstall
in the remote python environment.
admin workspace python list¤
List installed python packages.
This command is essentially a pip list
in the remote python environment.
It outputs a table of python package identifiers with version information.
Options
admin workspace python list-plugins¤
List installed workspace plugins.
This commands lists all discovered plugins.
Note
The plugin discovery is restricted to package prefix (cmem-
).