July 1, 2024

Run Anaconda Navigator and Install Packages from Terminal in Linux Ubuntu

In this machine learning, Python, and data science tutorial, we explain how to run Anaconda Navigator and install packages from the terminal in Linux Ubuntu. The YouTube tutorial is given below.

To run the Anaconda-Navigator, open a new terminal in Linux Ubuntu and in the new terminal, run

conda activate	
anaconda-navigator

This should start the Anaconda Navigator. To install a package, open Anaconda Navigator, and click on Environments. Click on Base Environment and open a terminal. This should activate the anaconda base environment. In the terminal type “pip install” and name of the package.

Another approach for installing a package is to open a new terminal and in the new terminal type “conda activate” in order to activate the base environment. Then, in this base environment, you should type “pip install” and the name of the package.

Watch the video tutorial to further learn how to install packages in the Anaconda Navigator.