How to start Spyder IDE on Windows

前端 未结 12 1014
醉酒成梦
醉酒成梦 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:22

    After pip install spyder give this command

    pip install --upgrade spyder
    

    This command will update all Spyder dependencies.

    Now in command prompt(cmd) navigate to the scripts folder in your python directory. In my system the path is C:\Users\win10\AppData\Local\Programs\Python\Python36-32\Scripts so i use the following command in command prompt.

    cd C:\Users\win10\AppData\Local\Programs\Python\Python36-32\Scripts
    

    once you are inside scripts directory type spyder3 and press enter and spyder ide starts.

    C:\Users\win10\AppData\Local\Programs\Python\Python36-32\Scripts>spyder3
    

提交回复
热议问题