Installing Software Packages
In addition to the pre-installed software packages detailed in Available Images, users can install additional software to their environment either directly within the Jupyter Notebook or from the integrated terminal.
Method 1: Installing Packages Directly in a Jupyter Notebook
You can install Python packages directly from a Jupyter Notebook using the ! command to run shell commands. Follow these steps:
- 
    
Open your Jupyter Notebook
 - 
    
Create a new code cell
 - Use the following command to install a package (replace 
package_namewith the name of the package you want to install):!pip install package_name - 
    
Run the cell by pressing
Ctrl + Enter. The package will be installed, and you’ll see the installation progress in the output - Import the package to use it in your notebook:
    
import numpy as np 
Method 2: Installing Packages via the Terminal
If you prefer using the terminal, follow these steps:
- Launch a Terminal:
    
- From the dashboard, click on the big blue “+” in the top left corner
 - Select “Terminal” from the Launcher menu
 - Install the package using pip in the terminal. For example, to install pandas, type:
        
pip install pandas 
 - 
    
Press
Enterto execute the command. You’ll see the installation progress in the terminal - Return to your notebook to import and use the package:
    
import pandas as pd 
Method 3: Installing Packages Using Anaconda
If you’re more familiar with using Anaconda as your package manager, follow these steps:
- Go to Anaconda.org
 - Search for packages:
    
- In the search bar, type the name of the package you are looking for (e.g., 
numpy) - Press 
Enterto view the search results - On the search results page, you can filter the results by the 
conda-forgechannel 
 - In the search bar, type the name of the package you are looking for (e.g., 
 - Select a package:
    
- Click on the package name to view more details, including installation instructions and available versions
 
 - Open your Jupyter Notebook
 - Launch a Terminal:
    
- From the dashboard, click on the big blue “+” in the top left corner
 - Select “Terminal” from the Launcher menu
 
 - Install Mamba (faster than Conda):
    
- If you haven’t already installed 
mamba, you can do so in the terminal with:conda install mamba -n base -c conda-forge 
 - If you haven’t already installed 
 - Install the desired package with Mamba:
    
mamba install package_name -c conda-forge - Return to your notebook to import and use the package:
    
import package_name