How to update the language server to the latest stable version #3977
Labels
area-intellisense
LSP-related functionality: auto-complete, docstrings, navigation, refactoring, etc.
meta
Issue that is tracking an overall project
needs PR
Ready to be worked on
Turning on the language server
In your
settings.json
, set"python.languageServer": "Microsoft"
. You will then be prompted to restart VS Code. If you have not downloaded the language server before then that will be triggered when you trigger the extension by opening a Python file.Issues directly related to the language server -- e.g. completions -- should be reported to the Microsoft/python-language-server issue tracker.
Checking whether you have the latest stable version
You can check what version of the language server you are using by looking at the Output Panel's
Python
output:The
languageServerVersion
in ourpackage.json
always specifies the latest stable release version.Installing the latest stable version
Extensions: Open Extensions Folder
commandms-python.python
)languageServer
)You can check the Output panel to double-check you are using the latest version (see above for a screenshot of what the panel looks like).
Installing the beta version
If you want to try out what is coming, you can try the beta version of the language server by setting
"python.analysis.downloadChannel": "beta"
(note that the setting isn't documented, so don't be alarmed if VS Code flags it as not existing). Do note that this will not re-download the language server immediately, so if you want to update immediately you will need to follow the instructions above on how to delete your current installation of the language server.As with anything that is beta, no guarantees of stability or quality can be made. If issues are found then please report them on the Microsoft/python-language-server issue tracker.
The text was updated successfully, but these errors were encountered: