Debian Stretch 存储库中的稳定版本 (3.1.3) 有点旧 (https://packages.debian.org/search?keywords=spyder3)。
所以,我通过安装了3.2.6版本pip3 install spyder --user
。
我怎样才能运行它?尝试过:spyder
、spyder3
、python3-spyder
python3 spyder
。它已正确安装并且可以导入到交互式 shell 中。
答案1
通过以下方式安装后运行 IDE pip
:
查找它的安装位置pip3 show spyder
。它将类似于:.local/lib/python3.5/site-packages
。
转到子目录spyder/app/
,您会发现start.py
。运行它python3 start.py
。