Spyder Not Launching

Question:

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:ProgramDataAnaconda3Scriptsspyder.exe does launch, but not the one for the environments.

enter image description here
enter image description here

Asked By: user1581390

||

Answers:

This solves the problem:

conda upgrade qt
Answered By: user1581390

I was not able to launch Spyder and Jupyter notebook from anaconda environment (Mac OS).

Following command worked for me:

conda uninstall tornado
conda install tornado==4.5.3 

Just uninstall tornado and reinstall it.

Answered By: Sayali Sonawane

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.

Answered By: Vaibhav K

I had faced a similar issue while running spyder from the anaconda navigator or the conda terminal.
To overcome this issue you just need to follow some simple steps.

  1. open the anaconda navigator. ( You can also use anaconda prompt and type “anaconda-navigator” at the console)

  2. Open the application and then follow the steps as shown in the image.
    here we are creating a new environment with a python of version 3.6. I think the 3.7 version is unstable and doesn’t work properly. It worked for me, hope for you too !!!

see the image here and follow the steps.

it will take some time to download resources to set up the environment for the first time.

after following the steps launch the application. Make sure to run the environment first to be able to launch the application.

Answered By: CHIRAG SAHU

This problem is solved in the newest version of conda. Currently it is on the conda canary channel, you can get it by running conda update conda -c conda-canary

Reference

Answered By: Hamdan Hejazi

For me the outdated library was spyder.kernel. The best solution is to open a new python environment (just input ‘py’ in command line to build a new environment) and run the following script and it tells you what library is missing or outdated:

from spyder.app import start
start.main()
Answered By: Nima Gerami Seresht

I had the same problem. Spyder was launching in the environment which had issues. I just removed the environment and everything fell back in to place.

Use this to remove the environment:

conda env remove -n ENV_NAME
Answered By: TBhavnani

This worked for me:

pip uninstall spyder

pip install spyder
Answered By: ali bakhtiari

Spyder IDE not launching
In my case I’m not installed the IDE in c-drive. After uninstalling and installing the Ide in the c-drive. It is launching.

If you are facing the same problem try to install in the windows c-drive.

Answered By: Dhamodharan R
Categories: questions Tags: , ,
Answers are sorted by their score. The answer accepted by the question owner as the best is marked with
at the top-right corner.