This article explains how to install python packages globally for python notebook.
Issue/Introduction
How to install Python notebook packages to make them available for all users of the TIBCO Data Science Team Studio?
Environment
All Supported Environment
Resolution
Follow the following steps: 1. Log in to the command line of the Python notebook instance. 2. Navigate to /opt/conda/envs/python3/bin 3. Install the python package using the following command. --------- ./pip install <package_name> --------- 4. Import package in the notebook: import <package_name>