Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Spyder installation without Anaconda

Tags:

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

like image 388
Piotr Koller Avatar asked Oct 05 '17 13:10

Piotr Koller


People also ask

Can I install Spyder using pip?

You can install Spyder with the pip package manager, which comes by default with most Python installations. Before installing Spyder itself by this method, you need to acquire the Python programming language. Then, to install Spyder and its other dependencies, run pip install spyder .

Does Spyder install its own Python?

So what I am understanding is that, yes, Spyder downloads its own Python (in my case Python 3.7.


1 Answers

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. spyder (to launch spyder) 

Package in point 3 also needs to be installed explicitly.

like image 200
Anuj N Avatar answered Sep 20 '22 13:09

Anuj N