Environments

Ellip Notebooks environments are a list of installed Python and/or R packages. They are provided by the Anaconda’s environments.

In this section you will see how to leverage environments to install additional software on your Ellip Notebooks’s server.

Install additional software

  • You can install the Python and R packages you need by using the conda command. The following command will create a new environment named my-env installing an arbitrary package:
conda create -n my-env <package name>
  • You can also install packages on an existing environment that you created previously:
conda install -n my-env <package name>