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.
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.
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.
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:
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.
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.
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!
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
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.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With