Open spyder in ubuntu

后端 未结 4 664
情书的邮戳
情书的邮戳 2021-02-14 13:53

I want to open spyder(Python IDE) in ubuntu.

Normally I would write \"spyder\" in the shell, and it would open the spyder IDE.

Now when I write spyder in the she

4条回答
  •  南旧
    南旧 (楼主)
    2021-02-14 14:38

    If typing "spyder" doesn't work, you might want to try typing "spyder3" in case you installed the spyder3 version. Below is what worked for me in my Ubuntu system.

    To install spyder via pip (my python version is 3.6.2), I used:

     pip install spyder
    

    Then, I had to install another package:

     pip install PyQtWebEngine
    

    Finally, to open the Spyder window, I typed into my terminal:

     spyder3
    

提交回复
热议问题