How to start Spyder IDE on Windows

前端 未结 12 989
醉酒成梦
醉酒成梦 2021-02-01 03:56

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 r

12条回答
  •  温柔的废话
    2021-02-01 04:25

    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
    

提交回复
热议问题