Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to start Spyder IDE on Windows

Tags:

python

pip

spyder

I downloaded spyder using the

pip install spyder

in my windows 10 32-bit operating system, but i dont see any desktop icons or exe files to start running the IDE. I downloaded spyder 3, any my python is 3.6. I even tried creating a shortcut of spyder.exe from the Python3.6/Scripts folder, but it won't open.

like image 408
Raghu Avatar asked Jul 06 '17 18:07

Raghu


People also ask

Why Spyder IDE is not opening?

If Spyder won't launch, check the Emergency CPR section and see if that clears it up. If your problem is related to the kernel not starting, autocompletion or a plugin go to Common Illnesses section.

Do I need to install Python before Spyder?

So i guess, for any future Spyder user, the recommendation would be to NOT install Python independently. Just install Spyder, which will come with its own Python.

How do I run the Spyder IDE?

Click the Launch button to run the Spyder IDE. The main window of the Spyder IDE contains a main menu, toolbar, and several panes. At the top is the main menu: Underneath it is the toolbar:

How do I launch Spyder from a python script?

To launch Spyder, I created a simple Python script (Spyder.py): # Spyder Start Script from spyder.app import start start.main () Lastly, I created a shortcut on my desktop which launches Spyder.bat and updated the icon to one I downloaded from the Spyder github project. Works like a charm for me.

What is Spyder?

Overview Spyder is a free and open source scientific environment written in Python, for Python, and designed by and for scientists, engineers and data analysts.

How do I add Spyder to the start menu?

If you look at your “Start” menu, in the “ Anaconda3 (64-bit) ” folder, you should notice a new “Spyder” icon. I like to right-click it and click “Pin to Start Menu.” But I use Spyder a lot!


2 Answers

The name of the spyder executable was changed to spyder3.exe in python version 3. I install pyqt5 and spyder via pip and was able to launch spyder3. I first tried without installing pyqt5 and nothing happened. Once I installed pyqt5, then spyder 3 opened.

Try the following from a windows cmd.exe prompt:

    C:\Users\..>pip install pyqt5     C:\Users\..>pip install spyder     C:\Users\..>spyder3 
like image 131
Charlie Avatar answered Oct 04 '22 19:10

Charlie


I had the same problem after setting up my environment on Windows 10. I have Python 3.6.2 x64 installed as my default Python distribution and is in my PATH so I can launch from cmd prompt.

I installed PyQt5 (pip install pyqt5) and Spyder (pip install spyder) which both installed w/out error and included all of the necessary dependencies.

To launch Spyder, I created a simple Python script (Spyder.py):

# Spyder Start Script from spyder.app import start start.main() 

Then I created a Windows batch file (Spyder.bat):

@echo off python c:\<path_to_Spyder_py>\Spyder.py 

Lastly, I created a shortcut on my desktop which launches Spyder.bat and updated the icon to one I downloaded from the Spyder github project.

Works like a charm for me.

like image 29
Kenneth Cascio Avatar answered Oct 04 '22 17:10

Kenneth Cascio