Spyder installation without Anaconda

Piotr Koller picture Piotr Koller · Oct 5, 2017 · Viewed 32k times · Source

I already have Python 3.6 (32-bit) on Windows 7. Is there a way to install Spyder without downloading Anaconda, WinPython, etc. ?

Answer

Anuj N picture Anuj N · Mar 10, 2019

You need to run the following commands in order to install and run the Spyder3 without anaconda:

 1. python -m pip install pyqt5
 2. python -m pip install spyder
 3. python -m pip install PyQtWebEngine
 4. spyder3 (to launch spyder)

Package in point 3 also needs to be installed explicitly.