Anaconda Navigator doesn't launch issue [Solved]

avatar
Borislav Hadzhiev

Last updated: Apr 11, 2024
3 min

banner

# Table of Contents

  1. Anaconda Navigator doesn't launch issue
  2. Launching the Anaconda Navigator on macOS and Linux
  3. Launching the Anaconda Navigator on Windows

# Anaconda Navigator doesn't launch issue [Solved]

Make sure you have Anaconda installed by following the official instructions on anaconda.com.

Once you open the page, click on the Installing on link that relates to your operating system, e.g. Installing on Windows or Installing on macOS.

I've written a step-by-step guide on how to install Anaconda on Windows.

Once you've installed Anaconda, you should be able to run the conda --version command.

shell
conda --version

verify conda is installed

If you get a version number back, then Anaconda is installed successfully.

# Launching the Anaconda Navigator on macOS and Linux

If you are on macOS or Linux, try to run the following commands to open Anaconda Navigator.

You can open your terminal by pressing Ctrl + Alt + T.

shell
source ~/anaconda3/bin/activate root anaconda-navigator

You should also be able to start the Anaconda navigator by running only the second command.

shell
anaconda-navigator

start anaconda navigator

A file or a shortcut to the Anaconda Navigator is not added on macOS or Linux because there are many different versions of the application.

Instead, you have to open the Anaconda Navigator GUI by running the anaconda-navigator command from your terminal.

# Launching the Anaconda Navigator on Windows

If you are on Windows, have Anaconda installed and aren't able to start the Anaconda Navigator, open CMD (Command Prompt) and run the following command.

shell
pip install --upgrade pywin32==228

The command installs an older version of the pywin32 package that is compatible with Anaconda Navigator.

If you get an error that Could not find a version that satisfies the requirement, ignore the error.

  1. Click on the search field and type Anaconda Prompt.

search anaconda prompt

  1. In the Anaconda Prompt, run the following command.
shell
conda install anaconda-navigator

If you get prompted for confirmation, press y and hit Enter.

  1. Run the following command (in the Anaconda Prompt) to start the Anaconda Navigator.
shell
anaconda-navigator

If that doesn't work, try to activate the base environment before running anaconda-navigator.

shell
conda activate base anaconda-navigator

Once you have Anaconda Navigator installed, you can also:

  1. Click on the search field and type Anaconda Navigator.
  2. Start the application.

If the error persists, try to run the following commands in CMD (Command Prompt).

shell
conda update conda conda update anaconda-navigator anaconda-navigator --reset anaconda-navigator

If the conda update conda command didn't work, try to use the following command instead.

shell
conda update -n base -c defaults conda

The commands update conda and anaconda-navigator packages and start Anaconda Navigator after resetting it.

If you get the error This application failed to start because it could not find or load the Qt platform plugin "windows", try to install the PyQt5 package by running the following command.

shell
pip install PyQt5 --upgrade # Or with pip3 pip3 install PyQt5 --upgrade

If the issue persists and you aren't able to start Anaconda Navigator, follow the step-by-step installation instructions in the following article.

During the installation process, in the Advanced Options step, you have to make sure to check the Add Anaconda3 to my PATH environment variable checkbox.

add anaconda path to env variable

Follow my step-by-step guide on installing Anaconda on Windows if you still run into issues.

If none of the suggestions helped, try restarting your PC as your PATH environment variable might not have been updated.

# Additional Resources

You can learn more about the related topics by checking out the following tutorials:

I wrote a book in which I share everything I know about how to become a better, more efficient programmer.
book cover
You can use the search field on my Home Page to filter through all of my articles.