I have installed python 3.6.5 and Django 2.0.4 on windows 10 OS.
In vs code open command palette (Ctrl+Shift+p).
There select Python:Select Interpreter
Close your vs code and then try. If it still does not work. Try again by changing to:-
Python:Build Workspace symbols and re-open the vs code. That's all i did and got intelligence enabled.
Answer from Shashikant Pandit on Stack OverflowI have installed python 3.6.5 and Django 2.0.4 on windows 10 OS.
In vs code open command palette (Ctrl+Shift+p).
There select Python:Select Interpreter
Close your vs code and then try. If it still does not work. Try again by changing to:-
Python:Build Workspace symbols and re-open the vs code. That's all i did and got intelligence enabled.
Old question that worth another working answer:
In settings.json, set the value of python.jediEnabled to false (see some more details here).
P.S. You can also try and move back to Jedi (just remove python.jediEnabled or set it to true), and in my case, Intellisense keeps working, though much slower.
IntelliSense Not Working in VS Code (Python – Pylance) After August 2025 Update
Intellisense step by step configuration on visual studio code
Intellisense (autocomplete) not working in VS Code while at work
Configure VSCode for Python (IntelliSense, code completion, | Forums | SideFX
Videos
This can be caused by many reasons, some of them are as follows.
Python executable path in vscode is incorrect
- Solution: Configure the path to the python executable in
settings.json. Remember to restart vscode after.
- Solution: Configure the path to the python executable in
The module is located in a non-standard location
Solution: Configure
settings.jsonto include this location for autocompletion to work. An example (for Linux) used to add a custom module for the workspace:{ "python.pythonPath": "/usr/bin/python", "python.autoComplete.extraPaths": [ "${workspaceFolder}/customModule" ] }
vscode was not launched from the active virtual environment
- Solution: The path to the modules is set when a virtual environment is activated. Launch vscode from a terminal with the correct virtual environment activated
Installing Pylance addon caused Vscode Intellisense to stop.
On disabling Pylance and enabling the Default Microsoft Python extension along with Visual Studio IntelliCode(Microsoft) and reverting to the Jedi server(prompted by Vscode) ,restarted intellisense detection.
IntelliSense Not Working in VS Code (Python – Pylance) After August 2025 Update
Post:
Hey everyone 👋
Just wanted to share a quick fix for an issue I recently faced — maybe it’ll help someone else.
After updating VS Code in August 2025, my IntelliSense for Python completely stopped working. No auto-complete, no suggestions — it was really frustrating, especially with Pylance enabled.
Luckily, I found a helpful discussion on the official GitHub page that solved the issue for me.
🔗 If you're facing the same issue, check out this link for the full fix:
👉 vscode-intellisense-issue
👉 https://github.com/microsoft/pylance-release/issues/7308
Hope it helps! If anyone needs more info or is still stuck, feel free to reply — happy to share what worked for me. 😊
Intellisense was provided by the Language Server, The default value of it is Default.
Default: Automatically select a language server: Pylance if installed and available, otherwise fallback to Jedi.
So, it's a little weird of your problem, could you try to install the Pylance and set it as the Language Server? Add this in the settings.json file:
"python.languageServer": "Pylance",
Have you tried Ctrl+Space or hovering some code?
Also do you have "Visual Studio IntelliCode" extension installed?
If neither Ctrl+Space nor hovering work, it is recommended to restart VS Code (https://code.visualstudio.com/docs/editor/intellisense#_troubleshooting)