Skip to content Skip to sidebar Skip to footer

Spyder Is Not Launching From Anaconda Navigator, On Windows

While launching Spyder from Anaconda Navigator or directly from the menu, it is showing the given error message: Traceback (most recent call last): File 'C:\Users\charchil\anaco

Solution 1:

A similar issue was raised on Jupyter Notebooks GitHub so it seems likely that a similar solution will help you, i.e.:

Attempt:

conda uninstall pyzmq
conda install pyzmq

Using the conda packages should make sure that version compatibility is maintained. If, however, that still doesn't work (and some comments in the attached issue suggested that it didn't work for some people), attempt:

pip uninstall pyzmq
pip install pyzmq

You can check your version of pip with pip --version and might want to consider upgrading it first if it is a long way behind. Current version is 20.1.1. Command to upgrade pip is:

python -m pip install --upgrade pip 

Solution 2:

Open the Anaconda prompt

conda deactivate conda update anaconda-navigator

https://docs.anaconda.com/anaconda/navigator/update-navigator/

Solution 3:

For those who are still looking for a quicker answer then below solution might help you as well and this worked for me like a charm.

  1. Open Anaconda Prompt
  2. Run the command conda update --all
  3. Re launch the Anaconda Navigator now
  4. Now Launch, spyder or jupyter notebook. Probably it should work for you as well.

NOTE:If you are running any firewall application then, make sure you launch navigator in administrator mode and unblock any prompt requests accordingly for smooth launching. This is on windows systems again and may be a different way for other platforms.

Hope this helps someone in need again. All the best.

Post a Comment for "Spyder Is Not Launching From Anaconda Navigator, On Windows"