Skip to content

Instantly share code, notes, and snippets.

@skymoore
Created March 21, 2024 21:40
Show Gist options
  • Save skymoore/6d84aecba87534d93db4697dcc707d8e to your computer and use it in GitHub Desktop.
Save skymoore/6d84aecba87534d93db4697dcc707d8e to your computer and use it in GitHub Desktop.
Get Intellisense in VSCodium

VSCodium Python Intellisense

  1. Install the ms-python extension.
  2. Create a python virtual environment.
    python -m venv venv
  3. Activate the virtual environment.
    . venv/bin/activate
  4. Install the Jedi language server.
    pip install jedi-language-server
  5. Create the vscode settings json file.
    mkdir .vscode && touch .vscode/settings.json
  6. Add this setting:
    {
        "python.languageServer": "Jedi"
    }
  7. Select the venv interpreter for your workspace:
    {
        "python.defaultInterpreterPath": "/path/to/venv/bin/python",
    }
@wbirkmaier
Copy link

Sweet!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment