Last active
September 20, 2024 15:01
-
-
Save atulkumar2/ca6f14405f3d59333e489302663f0795 to your computer and use it in GitHub Desktop.
Install Jupyter LSP for Python on Windows 11
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Fickle setup with too many issues on Windows 11 client | |
# https://github.com/jupyter-lsp/jupyterlab-lsp | |
# Windows 11 | |
# Python 3.11 or 3.12 | |
# Do this before other installations | |
# Make sure that all subsequent packages are installed from conda-forge. If Python changes to official package, jupyter lab stops working properly. | |
conda create -n <envname> | |
conda install -c conda-forge python=3 | |
conda install -c conda-forge 'jupyterlab>=4.1.0,<5.0.0a0' jupyterlab-lsp | |
conda install -c conda-forge python-lsp-server | |
Jupyter lab |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment