目前在windows系统上,使用pip命令安装了pyls,但是打开*.py文件会提示LSP::No LSP server for python-mode,显然是lsp-mode找不到pyls,但是怎么配置这个路径?
可以通过 lsp-clients-python-command
变量指定 pyls.exe 的路径,像这样:
(setq lsp-clients-python-command "C:\\Anaconda3\\Scripts\\pyls.exe")
1 个赞
解决问题了,非常感谢!