This article mainly introduces when using VS Code to create files, open folders or open new options, and use shortcut keys to report errors: ((this.configurationService.getValue(…) || []).filter is not a function) Solution.
Modify the configuration of “workbench.editorAssociations” in the settings.json file
The original configuration:
"workbench.editorAssociations": {
"*.ipynb": "jupyter-notebook"
}
Change to:
"workbench.editorAssociations": [
{
"viewType": "jupyter-notebook",
"filenamePattern": "*.ipynb"
}
],
or
"workbench.editorAssociations": {
"*.ipynb": "jupyter.notebook.ipynb"
}
Note : settings.json
File path in Mac :~/Library/Application Support/Code/User/settings.json
Similar Posts:
- Modify the default open file path of Jupiter notebook
- Jupyter notebook new Python3 Error: Permission denied: Untitled.ipynb,Modify workspace
- Jupyter Notebook error: How to IOPub_data_rate_limit [How to Solve]
- Problem solving of jupyter notebook dead kernel
- Using the jupyter notebook (error/usr/bin/python3: no module named ipykernel) on the local browser remote server_ launcher)
- Error in importing tensorflow in Jupiter Notebook: no module named tensorflow solution
- To solve the importerror: Matplotlib is required for plotting problem in Jupiter notebook
- [Solved] ImportError: cannot import name pywrap_tensorflow
- Anaconda makes. Ipynb file into. EXE file
- Solution of syntax error: invalid character in identifier when writing Python code