Win10-x64平台,原生Emacs,试过26/27/28,效果都一样。Spacemacs为develop分支,已pull到最新。
首先,我根据python layer README.org的指导,用pip的方式安装了pyls。使用一段时间,发现补全中很卡,因此想尝试用mypyls版本。
根据这个帖子里面的说法,我
- 在anaconda中用pip方式删除了之前安装的python-language-server,然后下载了dotnet-sdk-3.1.201-win-x64,
- 按照python layer README.org中的方法成功生成了微软python-language-server的目录。其中dll全路径为D:\Program Files\python-language-server\output\bin\Release\Microsoft.Python.LanguageServer.dll
- 最后,我在.spacemacs配置文件中加入以下配置
(python :variables
python-backend 'lsp
python-formatter 'black
python-lsp-server 'mspyls
python-lsp-git-root "d:\\Program Files\\python-language-server"
)
其中python-lsp-git-root我设置成以上形式以及"d:/Program Files/python-language-server"的结果一样。 之后,我打开.py文件时,提示
lsp-python-ms: Using version at ‘d:/Program Files/python-language-server/output/bin/Release/’
随后,提示
Unable to find installed server supporting this file. The following servers could be installed automatically: mspyls.
回车之后提示
LSP:: Server mspyls install process failed with the following error message: Search failed "
".
请教大家这个问题怎么解决?