使用 pip 安装后无法启动 Spyder

Can't launch Spyder after installing with pip

Python 初学者。我想使用 Spyder 作为我的 Python IDE。可惜独立版本不包含 pip,我想使用“Vanilla Python”而不是 Anaconda。所以我通过安装 Spyder pip install spyder,效果很好。但是,当运行 spyder3 命令中的window 时,没有任何反应。我没有收到任何错误,但 Spyder 也没有启动。虽然 Spyder 网站说自定义安装可能很棘手,但它没有提供有关如何完成它的指南。有人知道怎么做吗? OS 是 Windows 10.

您需要遵循以下命令:

python -m venv spyder-env
spyder-env/Scripts/activate.bat
pip install spyder

more info

更新:再次尝试 Python 3.10.4。 “spyder”现在存在于 Scripts 文件夹中,并且在 cmd 中键入 spyder 时会启动。现在对我有用。