Knowledge Base Article

What Version Of Each Library/Package Is Sisense For Cloud Data Teams Using? [Python And R]

Quick to figure out 🙂 Run the following code within the Python/R editor. (Write Select 1 in the SQL editor to be able to use the Python/R editor)
import pkg_resources;
installed_packages = [(d.project_name, d.version) for d in pkg_resources.working_set]
print(installed_packages)
And for R:
print(sessionInfo())
Updated 03-02-2023
No CommentsBe the first to comment