How to make jupyterlab-lsp work with Jupyter Lab - Launching Example Server failed: Error: spawn pyls ENOENT
See original GitHub issueIt might be a lame question, but I went through all the installation steps and still can’t get jupyterlab-lsp to work:
- extension was installed in jupyter lab
- I installed the python-language-server
- servers.yml file - is in the folder from where my virtual env starts and I launch jupyter lab
- before starting jupyter lab I run the following line but it results in this error:
node /Users/konrad/.local/share/virtualenvs/SharedEnv-r6sHwbPo/share/jupyter/lab/staging/node_modules/jsonrpc-ws-proxy/dist/server.js --port 3000 --languageServers servers.yml
What am I missing here?
Issue Analytics
- State:
- Created 4 years ago
- Comments:10 (5 by maintainers)
Top Results From Across the Web
spawn pep8 ENOENT · Issue #30 · AtomLinter/linter-pycodestyle
How to make jupyterlab-lsp work with Jupyter Lab - Launching Example Server failed: Error: spawn pyls ENOENT jupyter-lsp/jupyterlab-lsp#63.
Read more >What to do when things go wrong - The Jupyter Notebook
Jupyter fails to start · Have you installed it? ;-) · If you're using a menu shortcut or Anaconda launcher to start it,...
Read more >Failed to start the Kernel - Jupyter in VS Code - Stack Overflow
To work with Python in Jupyter Notebooks, you must activate an Anaconda environment in VS Code, or another Python environment in which ...
Read more >How to Fix Kernel Error in Jupyter Notebook
So to get to the back-end, open the Anaconda command prompt. Since you have Anaconda already installed in your system, click the search...
Read more >19 Best JupyterLab Extensions for Machine Learning
Neptune-notebooks extension lets you: Click a button to send or download notebook checkpoint to and from Neptune; Compare checkpoints in Neptune and share...
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
Pep8?
On Mon, Oct 28, 2019, 14:24 Konrad notifications@github.com wrote:
Pyls also takes a ‘-d’ flag which may give more output.
Not to derail the conversation too much: This case makes me think we may wish to pass debug down from
notebook
to the built-in servers in the upcoming python proxy, e.g.{ “language_servers”: { “python-language-server”: { “argv”: [“pyls”], “debug”: [“pyls”, “-d”] } }
For some of them, e.g. r, it might be… more complicated.
On Mon, Oct 21, 2019, 16:12 M. Krassowski notifications@github.com wrote: