Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Spyder Not Launching

I have two environments in which spyder just doesn't want to launch. I click the icon there is a waiting cursor then nothing happens. One of the two is totally new that I just made today. After installing some packaged (pip install pytrends was the last one) it stopped opening.

Note: the general spyder at: C:\ProgramData\Anaconda3\Scripts\spyder.exe does launch, but not the one for the environments.

enter image description here enter image description here

like image 962
user1581390 Avatar asked Jul 01 '18 17:07

user1581390


People also ask

Why Spyder is not opening?

This error usually appears because you installed pyqt5 with pip at some point. Now you have to uninstall Anaconda and reinstall it following the instructions in our video to be able to successfully run Spyder again. Please try that and let us know if it works for you.

Why Spyder is not opening in Mac?

On macOS, the first time you open Spyder, you may see a message that it cannot be opened because the developer cannot be verified. If so, right-click on the application, select Open, then click Open in the resulting dialog, and the warning will no longer be shown.

How do I launch Spyder from terminal?

From the command line: Type spyder in your terminal (or Anaconda prompt on Windows). From Anaconda Navigator: Scroll to Spyder under Home, and click Launch.

How do I fix my Spyder IDE?

Restart your machine, in case the problem lies with a lingering process or another such issue. From the Anaconda Prompt/Terminal/command line (on Windows/Mac/Linux), run the command spyder --reset , which will restore Spyder's config files to their defaults, which solves a huge variety of Spyder issues.


1 Answers

Just try this :

  1. uninstall pyQt using

conda uninstall pyqt

  1. uninstall sip package

conda uninstall sip

  1. then install these packages in following order

conda install sip

conda install pyqt

conda upgrade spyder

this worked for me.

like image 67
Vaibhav K Avatar answered Sep 20 '22 12:09

Vaibhav K