Python.datascience Is "unknown Configuration Setting" In Vs Code
Solution 1:
Since Nov 2020 the Jupyter extension is seperated from Python extension for VS Code. The setting key has been renamed from python.dataScience
to jupyter
^update
So in your case please rename python.dataScience.runStartupCommands
to jupyter.runStartupCommands
Solution 2:
According to your description, you could refer to the following:
Whether in the "
.py
" file or the ".ipynb
" file, we can use the shortcut key"Ctrl+space
" to open the code suggested options:It is recommended that you use the extension "Pylance", which provides outstanding language services for Python in VSCode, and related content will also be displayed in the Jupyter file:
Combine these two methods:
For setting "python.dataScience.runStartupCommands", as it shows "Unknown Configuration Setting", now we don't use it to set Jupyter's "Intellisense" in VSCode.
Post a Comment for "Python.datascience Is "unknown Configuration Setting" In Vs Code"