LSP is down after upgrading to Spyder-5.1.0 even when downgrading back to 5.0.5
See original GitHub issueI upgraded to 5.1.0 on MacOs (direct download). It said that there was an error in opening Spyder due to the Spyder-kernels (asked me to download 2.1.0). I couldn’t download that version (only 2.0.5), so I restored spyder-5.0.5 (either from the Time Machine and as clean download from the website), but since then the LPS is failing and I get the following message:
- Spyder version: 5.0.5
- Python version: 3.7.10 (conda env)
- Qt version: 5.12.10
- PyQt version: 5.12.3
- Operating System name/version: MacOS BigSur 11.5.1
Dependencies
# Mandatory:
applaunchservices >=0.1.7 : 0.2.1 (OK)
atomicwrites >=1.2.0 : 1.4.0 (OK)
chardet >=2.0.0 : 4.0.0 (OK)
cloudpickle >=0.5.0 : 1.6.0 (OK)
cookiecutter >=1.6.0 : 1.7.3 (OK)
diff_match_patch >=20181111 : 20200713 (OK)
intervaltree >=3.0.2 : 3.1.0 (OK)
IPython >=7.6.0 : 7.24.1 (OK)
jedi =0.17.2 : 0.17.2 (OK)
jsonschema >=3.2.0 : 3.2.0 (OK)
keyring >=17.0.0 : 23.0.1 (OK)
nbconvert >=4.0 : 6.1.0 (OK)
numpydoc >=0.6.0 : 1.1.0 (OK)
parso =0.7.0 : 0.7.0 (OK)
pexpect >=4.4.0 : 4.8.0 (OK)
pickleshare >=0.4 : 0.7.5 (OK)
psutil >=5.3 : 5.8.0 (OK)
pygments >=2.0 : 2.9.0 (OK)
pylint >=1.0 : 2.8.3 (OK)
pyls >=0.36.2;<1.0.0 : 0.36.2 (OK)
pyls_black >=0.4.6 : 0.4.7 (OK)
pyls_spyder >=0.3.2;<0.4.0 : 0.3.2 (OK)
qdarkstyle =3.0.2 : 3.0.2 (OK)
qstylizer >=0.1.10 : 0.2.0 (OK)
qtawesome >=1.0.2 : 1.0.3 (OK)
qtconsole >=5.1.0 : 5.1.0 (OK)
qtpy >=1.5.0 : 1.9.0 (OK)
rtree >=0.9.7 : 0.9.7 (OK)
setuptools >=39.0.0 : 57.0.0 (OK)
sphinx >=0.6.6 : 4.0.2 (OK)
spyder_kernels >=2.0.4;<2.1.0 : 2.0.4 (OK)
textdistance >=4.2.0 : 4.2.1 (OK)
three_merge >=0.1.1 : 0.1.1 (OK)
watchdog >=0.10.3 : 2.1.2 (OK)
zmq >=17 : 22.1.0 (OK)
# Optional:
cython >=0.21 : 0.29.23 (OK)
matplotlib >=2.0.0 : 3.4.2 (OK)
numpy >=1.7 : 1.21.0 (OK)
pandas >=1.1.1 : 1.2.5 (OK)
scipy >=0.17.0 : 1.7.0 (OK)
sympy >=0.7.3 : 1.8 (OK)
Issue Analytics
- State:
- Created 2 years ago
- Comments:10 (7 by maintainers)
Top Results From Across the Web
Common Illnesses — Spyder 5 documentation
Given the variety of dependencies involved in making LSP work, an incompatible or out of date version in your environment can result in...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Probably this is due to that spyder-5.1.0 has switched from
python-language-server
, topython-lsp-server
. After the upgrade your spyder configuration is likely trying to startpylsp
instead ofpyls
. You can try installingpython-lsp-server
if it is not already installed. Or use the reverse workaround from Comment 13 on this Bug: https://bugs.gentoo.org/783615#c13Ok, I see. Thanks for your answers. Probably this error is related to issue #16117, so it could be fixed in our 5.1.1 version, which I hope to release in some hours.