Install Python Packages

Oracle recommends using conda environments to package python dependencies inside notebook sessions.

To view the list of packages installed in the conda environment, access a terminal window or a notebook running inside the conda environment kernel and enter conda list.
Conda packages

To directly install libraries, use pip or conda commands in a notebook. The libraries are installed in the conda environment that corresponds to the notebook kernel.
To install libraries from a terminal window tab:
  1. Enter conda activate <my_environment_name>. Where <my_environment_name> is the name of your environment.
  2. Enter conda install.
    See Conda Environments for more information.