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.
spyder
in the terminal. – Autobahnanaconda
as it comes with all builtin packages and its very easy to use. It installs python also you don't need to do it separately. – Swackedpyqt5
after installing Spyder? Look, pip installations are for experts only. So, if you don't have a clear understanding of Spyder dependencies, please install Anaconda instead. – Worked