ADCurry
ADCurry

Reputation: 23

Spyder 4.1.2 (Python 3.8) Blank Screen

Issue: When I open Spyder in the (base) environment using spyder it opens Spyder (Python 3.7) no issues. When I activate myenv and open spyder the Spyder opens in a blank screen and if I click anywhere it hangs and says not responding.

See image: blank screen spyder python

Any ideas what the problem might be? I have tried conda update --all

How to recreate the error: Open Anaconda Command Prompt:

conda create --name myenv
activate myenv
conda install -c conda-forge opencv
conda install -c conda-forge jupyterlab
conda install spyder
conda update --all
spyder

I have also tried installing jupyter lab and spyder using the Anaconda Navigator.

My system:

Dell XPS-15, 64-bit running Windows 10.

Upvotes: 2

Views: 4223

Answers (2)

Carlos Cordoba
Carlos Cordoba

Reputation: 34136

(Spyder maintainer here) Support for Python 3.8 on Windows will come in our 4.1.3 version, to be released the first week of May 2020.

Upvotes: 1

noah.ehrnstrom
noah.ehrnstrom

Reputation: 182

See if this helps in command prompt: conda install qt=5.6 pyqt=5.6 sip=4.18

Upvotes: 1

Related Questions