microsoft / vscode-jupyter

VS Code Jupyter extension
https://marketplace.visualstudio.com/items?itemName=ms-toolsai.jupyter
MIT License
1.28k stars 290 forks source link

installed python kernel is not seen/recognized by jupyter extension #15547

Closed LukasPChvatal closed 2 months ago

LukasPChvatal commented 5 months ago

Applies To

What happened?

jupyter-python notebook is not recognized by the 'kernel picker' tool (Notebook: Select notebook kernel), even when the exact path to the kernel.json is provided (created by jupyter installation ipykernel). Julia kernel is working fine. Python packages "python-***" (for example - python-ipykernel, which is v. 6.29.3-1) are managed using system package manager (OS Linux Manjaro). Jupyterlab started in a web-browser finds and operates with all installed kernels (julia, python, ...)

VS Code Version

Version: 1.87.0

Jupyter Extension Version

v2023.9.100

Jupyter logs

errobox shows up...sthg like 'this command is not found'

Coding Language and Runtime Version

Python 3.11.8

Language Extension Version (if applicable)

ms-python v2024.4.1

Anaconda Version (if applicable)

No response

Running Jupyter locally or remotely?

Local

DonJayamanne commented 5 months ago

Please can you install the latest version of vscode and jupyter extension. You have old versions installed

Please can you provider more information

jupyter-python notebook is not recognized by the 'kernel picker'

What do you mean by the text 'jupyter-python' ? There's no such package notrkernel that I'm aware of.

even when the exact path to the kernel.json is provided

How do you do this? There's no way to provide paths to kernels in the extension.

Please can you provide the steps required to reproduce this issues you are running into.

errobox shows up...sthg like 'this command is not found'

Please can you share a screenshot of this error message.

Please could you enable logging as follows:

jeckst commented 5 months ago

I seem to have the same or similar issue on VS Code version 1.88.1 Linux x64 6.5.0-27-generic snap with Jupyter extension v2024.4.2024041101 (pre-release) or v2024.3.1 (tried both).

Kernels stored in ~/.local/share/jupyter/kernels were not detected, the kernel picker offers only current venv and "Select Another Kernel…"

verbose Jupyter logs:

Visual Studio Code (1.88.1, undefined, desktop)
Jupyter Extension Version: 2024.3.1.
Python Extension Version: 2024.4.1.
Pylance Extension Version: 2024.4.1.
Platform: linux (x64).
Workspace folder ~/code/flatzone-studio-reports, Home = /home/bla
15:52:53.964 [debug] Old kernelSpecs (created by Jupyter Extension) stored in directory ~/.local/share/jupyter/kernels/__old_vscode_kernelspecs
15:52:53.975 [debug] Start refreshing Kernel Picker (1713275573975)
15:52:54.019 [debug] Search for KernelSpecs in Interpreter /bin/python
15:52:54.020 [debug] Search for KernelSpecs in Interpreter /bin/python3
15:52:54.020 [debug] Search for KernelSpecs in Interpreter /bin/python3.11
15:52:54.020 [debug] Search for KernelSpecs in Interpreter /bin/python3.8
15:52:54.020 [debug] Search for KernelSpecs in Interpreter /usr/bin/python3.11
15:52:54.020 [debug] Search for KernelSpecs in Interpreter /usr/bin/python3.8
15:52:54.020 [debug] Search for KernelSpecs in Interpreter ~/code/repo/venv/bin/python
15:52:54.021 [debug] Get Custom Env Variables, Class name = Jm, completed in 46ms, has a truthy return value, Arg 1: undefined, Arg 2: "RunPythonCode"
15:52:54.021 [debug] Jupyter Paths /kernels: 
15:52:54.022 [debug] Kernel Spec Root Paths, /usr/share/jupyter/kernels, /usr/local/share/jupyter/kernels, ~/.local/share/jupyter/kernels
15:52:54.072 [debug] No controller, hence notebook communications cannot be initialized for editor ~/code/repo/path/to/notebook/notebook.ipynb
15:52:54.072 [debug] Start refreshing Interpreter Kernel Picker
15:52:56.609 [debug] Conda file is conda
15:52:57.446 [debug] Refreshed Environments
15:52:58.448 [debug] End refreshing Kernel Picker (1713275573975)
LukasPChvatal commented 5 months ago

Thank you for your response jeckst ! I am adding comments to relevant points:

What do you mean by the text 'jupyter-python' ? There's no such package notrkernel that I'm aware of. sorry, I meant just notebook with python code interpreted by jupyter extension in vscode

even when the exact path to the kernel.json is provided

How do you do this? There's no way to provide paths to kernels in the extension. sorry, I meant the settings Jupyter> Kernels: Trusted This should have nothing to do with the issue. But I tried, in case that it would somehow force the extension to use these directories.

* Attempt to repro the issue & then copy the output from the `Jupyter` output panel.

I did as you suggested, but there is no output at all.

jeckst commented 5 months ago

@DonJayamanne To provide further info, I tested different versions of the Jupyter extension (through the "Install Another Version…" menu option) and I get the same behavior (no kernels detected) for v2024.3.0 as well, but v2024.2.0 seems to work fine in this regard.

DonJayamanne commented 5 months ago

I'm sorry, and thank you for checking this. @jeckst @LukasPChvatal Please can you share the full path to the kernelspec.json file and also share all of the contents in the kernelspec.json file.

I just tried this at my end and it works,

jeckst commented 5 months ago

@DonJayamanne not sure what you mean, if you mean the kernel.json file (or, I guess, the kernelspec JSON file), then the path is /home/jeckst/.local/share/jupyter/kernels/my-kernel-name/kernel.json and the contents are

{
   "argv": [
      "/home/jeckst/code/repo/venv/bin/python3.11",
      "-m",
      "ipykernel_launcher",
      "-f",
      "{connection_file}"
   ],
   "display_name": "my-kernel-name",
   "language": "python",
   "env": {
      "secret": "*****"
   }
}

(I obviously cannot share all the envs, but that shouldn't matter, right?)

If you mean anything else by the "kernelspec.json file", I am not sure what it is, so could you please provide some more hints at where to find this? Thanks!

jeckst commented 5 months ago

@DonJayamanne To clarify, this is a kernelspec I installed through the normal Jupyter/IPython means (and edited to add envs), NOT through VS Code.

LukasPChvatal commented 5 months ago
~/.local/share/jupyter/kernels/python3/kernel.json

contains the following

{
 "argv": [
  "/usr/bin/python",
  "-Xfrozen_modules=off",
  "-m",
  "ipykernel_launcher",
  "-f",
  "{connection_file}"
 ],
 "display_name": "pythonenv",
 "language": "python",
 "metadata": {
  "debugger": true
 }
}
DonJayamanne commented 5 months ago

Sorry, I meant kernel.json

When you open vscode, what folder do you open? Are you opening the repo folder, please can you provide the path Also is the python env ‘ home/jeckst/code/repo/venv/bin/python3.11’ in the list of python environments when you use the command ‘Python: Select Interpreter’?

than you

jeckst commented 5 months ago

@DonJayamanne in this case it would be the repo folder, so /home/jeckst/code/repo/. Yes, the python venv you mention is in the "Python: Select Interpreter" list as well as in the Kernel picker list.

DonJayamanne commented 5 months ago

@LukasPChvatal In your case, you should be able to just select the Python environment /usr/bin/python form the list of the Python environments.

DonJayamanne commented 5 months ago

@jeckst Please can you install VS Code insiders and the latest pre-release version of the Jupyter extension and see if that works?

jeckst commented 5 months ago

@DonJayamanne It does not work (kernel picker does not offer Jupyter kernels) in the VS Code Insiders / pre-release Jupyter extension. It does work on VS Code Insiders with Jupyter extension v2024.2.0 (so the same as in normal VS Code).

DonJayamanne commented 5 months ago

@jeckst Please can you install the latest pre-release version of Jupyter extension in VS Code insiders and try again. & Please share the logs (I've added some additional logging).

jeckst commented 5 months ago

@DonJayamanne Done, still the same behavior, here are the logs:

Visual Studio Code - Insiders (1.89.0-insider, undefined, desktop)
Jupyter Extension Version: 2024.4.2024041702.
Python Extension Version: 2024.5.11021008.
Pylance Extension Version: 2024.4.101.
Platform: linux (x64).
Workspace folder ~/code/repo, Home = /home/jeckst
16:17:10.682 [debug] Start refreshing Kernel Picker (1713363430682)
16:17:10.747 [debug] Search for KernelSpecs in Interpreter ~/code/repo/venv/bin/python
16:17:10.748 [debug] Search for KernelSpecs in Interpreter /bin/python
16:17:10.752 [debug] Search for KernelSpecs in Interpreter /bin/python3
16:17:10.753 [debug] Search for KernelSpecs in Interpreter /bin/python3.11
16:17:10.753 [debug] Search for KernelSpecs in Interpreter /bin/python3.8
16:17:10.753 [debug] Search for KernelSpecs in Interpreter /usr/bin/python3.11
16:17:10.753 [debug] Search for KernelSpecs in Interpreter /usr/bin/python3.8
16:17:10.753 [debug] Search for KernelSpecs in Interpreter ~/code/repo/venv/bin/python3.11
16:17:10.755 [debug] Get Custom Env Variables, Class name = qm, completed in 74ms, has a truthy return value, Arg 1: undefined, Arg 2: "RunPythonCode"
16:17:10.755 [debug] Jupyter Paths /kernels: 
16:17:10.755 [debug] Kernel Spec Root Paths, /usr/share/jupyter/kernels, /usr/local/share/jupyter/kernels, ~/.local/share/jupyter/kernels
16:17:12.026 [debug] Hiding default KernelSpec 'python3115jvsc74a57bd0ed6c5a5264547cfce66fa3357dbff6582fda81c863e5766dd2374b50c56d9143', /python for interpreter ~/code/repo/venv/bin/python (KernelSpec file ~/code/repo/venv/share/jupyter/kernels/python3/kernel.json)
16:17:12.026 [debug] Hiding default KernelSpec 'python3115jvsc74a57bd0ed6c5a5264547cfce66fa3357dbff6582fda81c863e5766dd2374b50c56d9143', /python for interpreter ~/code/repo/venv/bin/python (KernelSpec file ~/code/repo/venv/share/jupyter/kernels/python3/kernel.json)
16:17:12.055 [debug] End refreshing Kernel Picker (1713363430682)
16:17:12.245 [debug] Conda file is conda
DonJayamanne commented 5 months ago

@jeckst Thank you, It seems we do not see any env variables in the kernel.json file Please can you update the kernel.json file to add another env variable as follows

"env": {
      "some_other_value": "HelloWorld",
      "secret": "*****"
   }

Make this change, save the json file and reload VS Code and test again, Please do share the logs again. Thank you for your help in trying to address this issue. I'm certain we can fix this, just need a little help figuring out what is going on.

jeckst commented 5 months ago

@DonJayamanne I have several env vars in the actual file already, which I cannot share as they are possibly secret. I will add one more, but don't see how that might change things. I might not get to in until Friday, though.

Also, I don't quite understand how that is the conclusion you've drawn from the logs. I don't think you see any upyter kernels at all, not seeing the env vars is the least of the problems. But excuse me if I am mistaken, I guess I don't quite understand everything in the logs, obviously.

DonJayamanne commented 5 months ago

env vars in the actual file already, which I cannot share as they are possibly secret. I will add

Oh , didn't know that. There's no need to try adding any new env variables. I'll create a new VSIX in the mean time with more logging.

understand how that is the conclusion you've drawn from the logs. I don't think you see any upyter kernels at all, not seeing the env vars is the least of the problems

Based on the code, we hide kernels if there are no env variables, in which case its the same as selected the Python environment.

It looks like something else is going on and I'll need to add more logging.

thank you for your help.

jeckst commented 5 months ago

@DonJayamanne So is there anything else I could test to help? Current jupyter output logs follows, but it seems pretty much the same:

Visual Studio Code - Insiders (1.89.0-insider, undefined, desktop)
Jupyter Extension Version: 2024.4.2024041801.
Python Extension Version: 2024.5.11091012.
Pylance Extension Version: 2024.4.102.
Platform: linux (x64).
Workspace folder ~/code/repo, Home = /home/jeckst
10:24:40.649 [debug] Start refreshing Kernel Picker (1713515080649)
10:24:40.809 [debug] Search for KernelSpecs in Interpreter ~/code/repo/venv/bin/python
10:24:40.809 [debug] Search for KernelSpecs in Interpreter /bin/python
10:24:40.810 [debug] Search for KernelSpecs in Interpreter /bin/python3
10:24:40.810 [debug] Search for KernelSpecs in Interpreter /bin/python3.11
10:24:40.810 [debug] Search for KernelSpecs in Interpreter /bin/python3.8
10:24:40.811 [debug] Search for KernelSpecs in Interpreter /usr/bin/python3.11
10:24:40.812 [debug] Search for KernelSpecs in Interpreter /usr/bin/python3.8
10:24:40.812 [debug] Search for KernelSpecs in Interpreter ~/code/repo/venv/bin/python3.11
10:24:40.812 [debug] Get Custom Env Variables, Class name = Jm, completed in 163ms, has a truthy return value, Arg 1: undefined, Arg 2: "RunPythonCode"
10:24:40.813 [debug] Jupyter Paths /kernels: 
10:24:40.813 [debug] Kernel Spec Root Paths, /usr/share/jupyter/kernels, /usr/local/share/jupyter/kernels, ~/.local/share/jupyter/kernels
10:24:40.887 [debug] No controller, hence notebook communications cannot be initialized for editor ~/code/repo/path/to/notebook/notebook.ipynb
10:24:40.887 [debug] Start refreshing Interpreter Kernel Picker
10:24:42.105 [debug] Hiding default KernelSpec 'python3115jvsc74a57bd0ed6c5a5264547cfce66fa3357dbff6582fda81c863e5766dd2374b50c56d9143', /python for interpreter ~/code/repo/venv/bin/python (KernelSpec file ~/code/repo/venv/share/jupyter/kernels/python3/kernel.json)
10:24:42.105 [debug] Hiding default KernelSpec 'python3115jvsc74a57bd0ed6c5a5264547cfce66fa3357dbff6582fda81c863e5766dd2374b50c56d9143', /python for interpreter ~/code/repo/venv/bin/python (KernelSpec file ~/code/repo/venv/share/jupyter/kernels/python3/kernel.json)
10:24:42.169 [debug] Conda file is conda
10:24:43.657 [debug] Refreshed Environments
10:24:44.374 [debug] No interpreter for Pylance for Notebook URI "~/code/repo/path/to/notebook/notebook.ipynb"
10:24:44.661 [debug] End refreshing Kernel Picker (1713515080649)

Based on the code, we hide kernels if there are no env variables, in which case its the same as selected the Python environment.

Is this a new thing? I checked on the older version (v2024.2.0, the last one that shows me Jupyter kernels without trouble) and I believe I can see even the kernels that have no envs defined in them.

As a side question – would you know how to force VS Code (insiders) to forget my choice of kernel? I clicked on one of the python environment ones for one file and now it automatically selects it every time I open/preview that file. And I can't find anywhere where is this selection stored. It's not really an issue, but it makes testing this problem a bit more bothersome.

VSCodeTriageBot commented 3 months ago

Hey @DonJayamanne, this issue might need further attention.

@LukasPChvatal, you can help us out by closing this issue if the problem no longer exists, or adding more information.

VSCodeTriageBot commented 2 months ago

This issue has been closed automatically because it needs more information and has not had recent activity. See also our issue reporting guidelines.

Happy Coding!

DonJayamanne commented 2 months ago

@jeckst I'm sorry I totally missed this, Will send a VSIX shortly.

DonJayamanne commented 2 months ago

Please could you

ms-toolsai-jupyter-insiders.vsix (1).zip

vs-code-engineering[bot] commented 2 months ago

This issue has been closed automatically because it needs more information and has not had recent activity. See also our issue reporting guidelines.

Happy Coding!

LukasPChvatal commented 1 month ago

Hello, thank you for the effors. Sorry for late reply. I did as asked - installed from vsix. After clicking on "select kernel", there still is no Python kernel option. If Julia extension is enabled, the only choice is Julia kernel.

Besides, ms-python extesion is not laoding properly - resulting in cpu overload. The following error message appears:

Extension activation failed, run the 'Developer: Toggle Developer Tools' command for more information.

[ copy paste of the Dev. tools panel is given bellow ]

*** The recent VSCODE version info: Version: 1.92.1 Commit: eaa41d57266683296de7d118f574d0c2652e1fc4 Date: 2024-08-09T07:48:41.621Z Electron: 30.3.1 ElectronBuildId: undefined Chromium: 124.0.6367.243 Node.js: 20.15.1 V8: 12.4.254.20-electron.0 OS: Linux x64 5.15.164-1-MANJARO

*** output of dev. tools

VM4 sandbox_bundle:2 Electron Security Warning (enableBlinkFeatures) This renderer process has additional "enableBlinkFeatures" enabled. This exposes users of this app to some security risk. If you do not need this feature, you should disable it.

For more information and help, consult https://electronjs.org/docs/tutorial/security. This warning will not show up once the app is packaged. (anonymous) @ VM4 sandbox_bundle:2 log.ts:419 INFO Started local extension host with pid 1994125. log.ts:439 ERR Extension 'ms-python.debugpy CANNOT USE these API proposals 'portsAttributes, contribIssueReporter, debugVisualization'. You MUST start in extension development mode or use the --enable-proposed-api command line flag log.ts:439 ERR Extension 'ms-python.python CANNOT USE these API proposals 'contribEditorContentMenu, quickPickSortByLabel, testObserver, quickPickItemTooltip, terminalDataWriteEvent, terminalExecuteCommandEvent, contribIssueReporter, terminalShellIntegration'. You MUST start in extension development mode or use the --enable-proposed-api command line flag log.ts:439 ERR Extension 'ms-toolsai.jupyter CANNOT USE these API proposals 'notebookDeprecated, notebookMessaging, notebookMime, contribNotebookStaticPreloads, portsAttributes, quickPickSortByLabel, notebookKernelSource, interactiveWindow, quickPickItemTooltip, notebookExecution, notebookCellExecution, notebookVariableProvider'. You MUST start in extension development mode or use the --enable-proposed-api command line flag log.ts:439 ERR Extension 'ms-toolsai.jupyter-renderers CANNOT USE these API proposals 'contribNotebookStaticPreloads'. You MUST start in extension development mode or use the --enable-proposed-api command line flag log.ts:439 ERR [ms-python.debugpy]: issue/reporter is a proposed menu identifier. It requires 'package.json#enabledApiProposals: ["contribIssueReporter"]' and is only available when running out of dev or with the following command line switch: --enable-proposed-api ms-python.debugpy log.ts:439 ERR [ms-python.python]: issue/reporter is a proposed menu identifier. It requires 'package.json#enabledApiProposals: ["contribIssueReporter"]' and is only available when running out of dev or with the following command line switch: --enable-proposed-api ms-python.python log.ts:439 ERR [ms-python.python]: editor/content is a proposed menu identifier. It requires 'package.json#enabledApiProposals: ["contribEditorContentMenu"]' and is only available when running out of dev or with the following command line switch: --enable-proposed-api ms-python.python An iframe which has both allow-scripts and allow-same-origin for its sandbox attribute can escape its sandboxing. mountTo @ workbench.desktop.main.js:1509 log.ts:439 ERR spawn /home/luke/.vscode-oss/extensions/ms-python.python-2024.12.3-universal/python-env-tools/bin/pet ENOENT: Error: spawn /home/luke/.vscode-oss/extensions/ms-python.python-2024.12.3-universal/python-env-tools/bin/pet ENOENT at ChildProcess._handle.onexit (node:internal/child_process:286:19) at onErrorNT (node:internal/child_process:484:16) at process.processTicksAndRejections (node:internal/process/task_queues:82:21) log.ts:439 ERR [Extension Host] error 14:52:54.795: Jupyter Extension: Error in activating extension, failed in hy Error: Extension 'ms-toolsai.jupyter' CANNOT use API proposal: notebookKernelSource. Its package.json#enabledApiProposals-property declares: but NOT notebookKernelSource. The missing proposal MUST be added and you must start in extension development mode or use the following command line switch: --enable-proposed-api ms-toolsai.jupyter at P (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:142:59143) at Object.createNotebookControllerDetectionTask (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:164:48650) at i (/home/luke/.vscode-oss/extensions/ms-toolsai.jupyter-2024.7.0-universal/dist/extension.node.js:299:6231) at hy.startRefreshWithPython (/home/luke/.vscode-oss/extensions/ms-toolsai.jupyter-2024.7.0-universal/dist/extension.node.js:299:6454) at hy.activate (/home/luke/.vscode-oss/extensions/ms-toolsai.jupyter-2024.7.0-universal/dist/extension.node.js:299:4678) at /home/luke/.vscode-oss/extensions/ms-toolsai.jupyter-2024.7.0-universal/dist/extension.node.js:373:28858 at Array.map () at rI.activate (/home/luke/.vscode-oss/extensions/ms-toolsai.jupyter-2024.7.0-universal/dist/extension.node.js:373:28844) at SG (/home/luke/.vscode-oss/extensions/ms-toolsai.jupyter-2024.7.0-universal/dist/extension.node.js:436:2062) at Bfe (/home/luke/.vscode-oss/extensions/ms-toolsai.jupyter-2024.7.0-universal/dist/extension.node.js:438:454) console.ts:137 [Extension Host] error 14:52:54.795: Jupyter Extension: Error in activating extension, failed in hy Error: Extension 'ms-toolsai.jupyter' CANNOT use API proposal: notebookKernelSource. Its package.json#enabledApiProposals-property declares: but NOT notebookKernelSource. The missing proposal MUST be added and you must start in extension development mode or use the following command line switch: --enable-proposed-api ms-toolsai.jupyter at P (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:142:59143) at Object.createNotebookControllerDetectionTask (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:164:48650) at i (/home/luke/.vscode-oss/extensions/ms-toolsai.jupyter-2024.7.0-universal/dist/extension.node.js:299:6231) at hy.startRefreshWithPython (/home/luke/.vscode-oss/extensions/ms-toolsai.jupyter-2024.7.0-universal/dist/extension.node.js:299:6454) at hy.activate (/home/luke/.vscode-oss/extensions/ms-toolsai.jupyter-2024.7.0-universal/dist/extension.node.js:299:4678) at /home/luke/.vscode-oss/extensions/ms-toolsai.jupyter-2024.7.0-universal/dist/extension.node.js:373:28858 at Array.map () at rI.activate (/home/luke/.vscode-oss/extensions/ms-toolsai.jupyter-2024.7.0-universal/dist/extension.node.js:373:28844) at SG (/home/luke/.vscode-oss/extensions/ms-toolsai.jupyter-2024.7.0-universal/dist/extension.node.js:436:2062) at Bfe (/home/luke/.vscode-oss/extensions/ms-toolsai.jupyter-2024.7.0-universal/dist/extension.node.js:438:454) y @ console.ts:137 log.ts:439 ERR [Extension Host] error 14:52:54.800: Jupyter Extension: Error in activating extension, failed in zy Error: Extension 'ms-toolsai.jupyter' CANNOT use API proposal: notebookKernelSource. Its package.json#enabledApiProposals-property declares: but NOT notebookKernelSource. The missing proposal MUST be added and you must start in extension development mode or use the following command line switch: --enable-proposed-api ms-toolsai.jupyter at P (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:142:59143) at Object.registerKernelSourceActionProvider (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:164:48785) at zy.activate (/home/luke/.vscode-oss/extensions/ms-toolsai.jupyter-2024.7.0-universal/dist/extension.node.js:304:115154) at /home/luke/.vscode-oss/extensions/ms-toolsai.jupyter-2024.7.0-universal/dist/extension.node.js:373:28858 at Array.map () at rI.activate (/home/luke/.vscode-oss/extensions/ms-toolsai.jupyter-2024.7.0-universal/dist/extension.node.js:373:28844) at SG (/home/luke/.vscode-oss/extensions/ms-toolsai.jupyter-2024.7.0-universal/dist/extension.node.js:436:2062) at Bfe (/home/luke/.vscode-oss/extensions/ms-toolsai.jupyter-2024.7.0-universal/dist/extension.node.js:438:454) console.ts:137 [Extension Host] error 14:52:54.800: Jupyter Extension: Error in activating extension, failed in zy Error: Extension 'ms-toolsai.jupyter' CANNOT use API proposal: notebookKernelSource. Its package.json#enabledApiProposals-property declares: but NOT notebookKernelSource. The missing proposal MUST be added and you must start in extension development mode or use the following command line switch: --enable-proposed-api ms-toolsai.jupyter at P (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:142:59143) at Object.registerKernelSourceActionProvider (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:164:48785) at zy.activate (/home/luke/.vscode-oss/extensions/ms-toolsai.jupyter-2024.7.0-universal/dist/extension.node.js:304:115154) at /home/luke/.vscode-oss/extensions/ms-toolsai.jupyter-2024.7.0-universal/dist/extension.node.js:373:28858 at Array.map () at rI.activate (/home/luke/.vscode-oss/extensions/ms-toolsai.jupyter-2024.7.0-universal/dist/extension.node.js:373:28844) at SG (/home/luke/.vscode-oss/extensions/ms-toolsai.jupyter-2024.7.0-universal/dist/extension.node.js:436:2062) at Bfe (/home/luke/.vscode-oss/extensions/ms-toolsai.jupyter-2024.7.0-universal/dist/extension.node.js:438:454) y @ console.ts:137 notificationsAlerts.ts:42 Extension activation failed, run the 'Developer: Toggle Developer Tools' command for more information. c @ notificationsAlerts.ts:42 console.ts:137 [Extension Host] warn 14:52:55.078: Jupyter Extension: Failed to attach variable provider Error: Extension 'ms-toolsai.jupyter' CANNOT use API proposal: notebookVariableProvider. Its package.json#enabledApiProposals-property declares: but NOT notebookVariableProvider. The missing proposal MUST be added and you must start in extension development mode or use the following command line switch: --enable-proposed-api ms-toolsai.jupyter at P (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:142:59143) at Object.set variableProvider [as variableProvider] (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:154:233066) at Function.create (/home/luke/.vscode-oss/extensions/ms-toolsai.jupyter-2024.7.0-universal/dist/extension.node.js:304:85881) at /home/luke/.vscode-oss/extensions/ms-toolsai.jupyter-2024.7.0-universal/dist/extension.node.js:304:99852 at Array.forEach () at Jy.addImpl (/home/luke/.vscode-oss/extensions/ms-toolsai.jupyter-2024.7.0-universal/dist/extension.node.js:304:99825) at /home/luke/.vscode-oss/extensions/ms-toolsai.jupyter-2024.7.0-universal/dist/extension.node.js:304:98811 at Array.forEach () at Jy.batchAdd (/home/luke/.vscode-oss/extensions/ms-toolsai.jupyter-2024.7.0-universal/dist/extension.node.js:304:98781) at Jy.createNotebookControllers (/home/luke/.vscode-oss/extensions/ms-toolsai.jupyter-2024.7.0-universal/dist/extension.node.js:304:97603) at Jy.loadControllersImpl (/home/luke/.vscode-oss/extensions/ms-toolsai.jupyter-2024.7.0-universal/dist/extension.node.js:304:97063) at Jy.loadControllers (/home/luke/.vscode-oss/extensions/ms-toolsai.jupyter-2024.7.0-universal/dist/extension.node.js:304:96713) at Jy. (/home/luke/.vscode-oss/extensions/ms-toolsai.jupyter-2024.7.0-universal/dist/extension.node.js:304:95593) at n.B (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:83:737) at n.fire (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:83:954) at i.value (/home/luke/.vscode-oss/extensions/ms-toolsai.jupyter-2024.7.0-universal/dist/extension.node.js:285:19835) at n.B (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:83:737) at n.C (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:83:807) at n.fire (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:83:1023) at Qm.writeToCache (/home/luke/.vscode-oss/extensions/ms-toolsai.jupyter-2024.7.0-universal/dist/extension.node.js:299:35919) at Qm.updateCache (/home/luke/.vscode-oss/extensions/ms-toolsai.jupyter-2024.7.0-universal/dist/extension.node.js:299:35204) at /home/luke/.vscode-oss/extensions/ms-toolsai.jupyter-2024.7.0-universal/dist/extension.node.js:60:12513 at VG (/home/luke/.vscode-oss/extensions/ms-toolsai.jupyter-2024.7.0-universal/dist/extension.node.js:60:12090) at Qm.i.value (/home/luke/.vscode-oss/extensions/ms-toolsai.jupyter-2024.7.0-universal/dist/extension.node.js:60:12494) at n.B (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:83:737) at n.C (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:83:807) at n.fire (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:83:1023) at /home/luke/.vscode-oss/extensions/ms-toolsai.jupyter-2024.7.0-universal/dist/extension.node.js:299:14697 y @ console.ts:137 console.ts:137 [Extension Host] warn 14:52:55.084: Jupyter Extension: Failed to attach variable provider Error: Extension 'ms-toolsai.jupyter' CANNOT use API proposal: notebookVariableProvider. Its package.json#enabledApiProposals-property declares: but NOT notebookVariableProvider. The missing proposal MUST be added and you must start in extension development mode or use the following command line switch: --enable-proposed-api ms-toolsai.jupyter at P (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:142:59143) at Object.set variableProvider [as variableProvider] (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:154:233066) at Function.create (/home/luke/.vscode-oss/extensions/ms-toolsai.jupyter-2024.7.0-universal/dist/extension.node.js:304:85881) at /home/luke/.vscode-oss/extensions/ms-toolsai.jupyter-2024.7.0-universal/dist/extension.node.js:304:99852 at Array.forEach () at Jy.addImpl (/home/luke/.vscode-oss/extensions/ms-toolsai.jupyter-2024.7.0-universal/dist/extension.node.js:304:99825) at /home/luke/.vscode-oss/extensions/ms-toolsai.jupyter-2024.7.0-universal/dist/extension.node.js:304:98811 at Array.forEach () at Jy.batchAdd (/home/luke/.vscode-oss/extensions/ms-toolsai.jupyter-2024.7.0-universal/dist/extension.node.js:304:98781) at Jy.createNotebookControllers (/home/luke/.vscode-oss/extensions/ms-toolsai.jupyter-2024.7.0-universal/dist/extension.node.js:304:97603) at Jy.loadControllersImpl (/home/luke/.vscode-oss/extensions/ms-toolsai.jupyter-2024.7.0-universal/dist/extension.node.js:304:97063) at Jy.loadControllers (/home/luke/.vscode-oss/extensions/ms-toolsai.jupyter-2024.7.0-universal/dist/extension.node.js:304:96713) at Jy. (/home/luke/.vscode-oss/extensions/ms-toolsai.jupyter-2024.7.0-universal/dist/extension.node.js:304:95593) at n.B (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:83:737) at n.fire (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:83:954) at i.value (/home/luke/.vscode-oss/extensions/ms-toolsai.jupyter-2024.7.0-universal/dist/extension.node.js:285:19835) at n.B (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:83:737) at n.C (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:83:807) at n.fire (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:83:1023) at Qm.writeToCache (/home/luke/.vscode-oss/extensions/ms-toolsai.jupyter-2024.7.0-universal/dist/extension.node.js:299:35919) at Qm.updateCache (/home/luke/.vscode-oss/extensions/ms-toolsai.jupyter-2024.7.0-universal/dist/extension.node.js:299:35204) at /home/luke/.vscode-oss/extensions/ms-toolsai.jupyter-2024.7.0-universal/dist/extension.node.js:60:12513 at VG (/home/luke/.vscode-oss/extensions/ms-toolsai.jupyter-2024.7.0-universal/dist/extension.node.js:60:12090) at Qm.i.value (/home/luke/.vscode-oss/extensions/ms-toolsai.jupyter-2024.7.0-universal/dist/extension.node.js:60:12494) at n.B (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:83:737) at n.C (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:83:807) at n.fire (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:83:1023) at /home/luke/.vscode-oss/extensions/ms-toolsai.jupyter-2024.7.0-universal/dist/extension.node.js:299:14697 y @ console.ts:137 console.ts:137 [Extension Host] warn 14:52:55.089: Jupyter Extension: Failed to attach variable provider Error: Extension 'ms-toolsai.jupyter' CANNOT use API proposal: notebookVariableProvider. Its package.json#enabledApiProposals-property declares: but NOT notebookVariableProvider. The missing proposal MUST be added and you must start in extension development mode or use the following command line switch: --enable-proposed-api ms-toolsai.jupyter at P (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:142:59143) at Object.set variableProvider [as variableProvider] (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:154:233066) at Function.create (/home/luke/.vscode-oss/extensions/ms-toolsai.jupyter-2024.7.0-universal/dist/extension.node.js:304:85881) at /home/luke/.vscode-oss/extensions/ms-toolsai.jupyter-2024.7.0-universal/dist/extension.node.js:304:99852 at Array.forEach () at Jy.addImpl (/home/luke/.vscode-oss/extensions/ms-toolsai.jupyter-2024.7.0-universal/dist/extension.node.js:304:99825) at /home/luke/.vscode-oss/extensions/ms-toolsai.jupyter-2024.7.0-universal/dist/extension.node.js:304:98811 at Array.forEach () at Jy.batchAdd (/home/luke/.vscode-oss/extensions/ms-toolsai.jupyter-2024.7.0-universal/dist/extension.node.js:304:98781) at Jy.createNotebookControllers (/home/luke/.vscode-oss/extensions/ms-toolsai.jupyter-2024.7.0-universal/dist/extension.node.js:304:97603) at Jy.loadControllersImpl (/home/luke/.vscode-oss/extensions/ms-toolsai.jupyter-2024.7.0-universal/dist/extension.node.js:304:97063) at Jy.loadControllers (/home/luke/.vscode-oss/extensions/ms-toolsai.jupyter-2024.7.0-universal/dist/extension.node.js:304:96713) at Jy. (/home/luke/.vscode-oss/extensions/ms-toolsai.jupyter-2024.7.0-universal/dist/extension.node.js:304:95593) at n.B (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:83:737) at n.fire (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:83:954) at i.value (/home/luke/.vscode-oss/extensions/ms-toolsai.jupyter-2024.7.0-universal/dist/extension.node.js:285:19835) at n.B (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:83:737) at n.C (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:83:807) at n.fire (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:83:1023) at Qm.writeToCache (/home/luke/.vscode-oss/extensions/ms-toolsai.jupyter-2024.7.0-universal/dist/extension.node.js:299:35919) at Qm.updateCache (/home/luke/.vscode-oss/extensions/ms-toolsai.jupyter-2024.7.0-universal/dist/extension.node.js:299:35204) at /home/luke/.vscode-oss/extensions/ms-toolsai.jupyter-2024.7.0-universal/dist/extension.node.js:60:12513 at VG (/home/luke/.vscode-oss/extensions/ms-toolsai.jupyter-2024.7.0-universal/dist/extension.node.js:60:12090) at Qm.i.value (/home/luke/.vscode-oss/extensions/ms-toolsai.jupyter-2024.7.0-universal/dist/extension.node.js:60:12494) at n.B (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:83:737) at n.C (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:83:807) at n.fire (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:83:1023) at /home/luke/.vscode-oss/extensions/ms-toolsai.jupyter-2024.7.0-universal/dist/extension.node.js:299:14697 y @ console.ts:137 console.ts:137 [Extension Host] warn 14:52:55.095: Jupyter Extension: Failed to attach variable provider Error: Extension 'ms-toolsai.jupyter' CANNOT use API proposal: notebookVariableProvider. Its package.json#enabledApiProposals-property declares: but NOT notebookVariableProvider. The missing proposal MUST be added and you must start in extension development mode or use the following command line switch: --enable-proposed-api ms-toolsai.jupyter at P (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:142:59143) at Object.set variableProvider [as variableProvider] (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:154:233066) at Function.create (/home/luke/.vscode-oss/extensions/ms-toolsai.jupyter-2024.7.0-universal/dist/extension.node.js:304:85881) at /home/luke/.vscode-oss/extensions/ms-toolsai.jupyter-2024.7.0-universal/dist/extension.node.js:304:99852 at Array.forEach () at Jy.addImpl (/home/luke/.vscode-oss/extensions/ms-toolsai.jupyter-2024.7.0-universal/dist/extension.node.js:304:99825) at /home/luke/.vscode-oss/extensions/ms-toolsai.jupyter-2024.7.0-universal/dist/extension.node.js:304:98811 at Array.forEach () at Jy.batchAdd (/home/luke/.vscode-oss/extensions/ms-toolsai.jupyter-2024.7.0-universal/dist/extension.node.js:304:98781) at Jy.createNotebookControllers (/home/luke/.vscode-oss/extensions/ms-toolsai.jupyter-2024.7.0-universal/dist/extension.node.js:304:97603) at Jy.loadControllersImpl (/home/luke/.vscode-oss/extensions/ms-toolsai.jupyter-2024.7.0-universal/dist/extension.node.js:304:97063) at Jy.loadControllers (/home/luke/.vscode-oss/extensions/ms-toolsai.jupyter-2024.7.0-universal/dist/extension.node.js:304:96713) at Jy. (/home/luke/.vscode-oss/extensions/ms-toolsai.jupyter-2024.7.0-universal/dist/extension.node.js:304:95593) at n.B (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:83:737) at n.fire (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:83:954) at i.value (/home/luke/.vscode-oss/extensions/ms-toolsai.jupyter-2024.7.0-universal/dist/extension.node.js:285:19835) at n.B (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:83:737) at n.C (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:83:807) at n.fire (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:83:1023) at Qm.writeToCache (/home/luke/.vscode-oss/extensions/ms-toolsai.jupyter-2024.7.0-universal/dist/extension.node.js:299:35919) at Qm.updateCache (/home/luke/.vscode-oss/extensions/ms-toolsai.jupyter-2024.7.0-universal/dist/extension.node.js:299:35204) at /home/luke/.vscode-oss/extensions/ms-toolsai.jupyter-2024.7.0-universal/dist/extension.node.js:60:12513 at VG (/home/luke/.vscode-oss/extensions/ms-toolsai.jupyter-2024.7.0-universal/dist/extension.node.js:60:12090) at Qm.i.value (/home/luke/.vscode-oss/extensions/ms-toolsai.jupyter-2024.7.0-universal/dist/extension.node.js:60:12494) at n.B (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:83:737) at n.C (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:83:807) at n.fire (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:83:1023) at /home/luke/.vscode-oss/extensions/ms-toolsai.jupyter-2024.7.0-universal/dist/extension.node.js:299:14697 y @ console.ts:137 TMScopeRegistry.ts:46 Overwriting grammar scope name to file mapping for scope source.julia. Old grammar file: file:///usr/lib/code/extensions/julia/syntaxes/julia.tmLanguage.json. New grammar file: file:///home/luke/.vscode-oss/extensions/julialang.language-julia-1.120.2-universal/syntaxes/julia_vscode.json register @ TMScopeRegistry.ts:46 log.ts:439 ERR [Extension Host] (node:1994125) DeprecationWarning: uuidv4() is deprecated. Use v4() from the uuid module instead. (Use exe --trace-deprecation ... to show where the warning was created) console.ts:137 [Extension Host] (node:1994125) DeprecationWarning: uuidv4() is deprecated. Use v4() from the uuid module instead. (Use exe --trace-deprecation ... to show where the warning was created) y @ console.ts:137 mainThreadExtensionService.ts:107 Activating extension 'ms-python.python' failed: Extension 'ms-python.python' CANNOT use API proposal: terminalShellIntegration. Its package.json#enabledApiProposals-property declares: but NOT terminalShellIntegration. The missing proposal MUST be added and you must start in extension development mode or use the following command line switch: --enable-proposed-api ms-python.python. $onExtensionActivationError @ mainThreadExtensionService.ts:107 log.ts:439 ERR [Extension Host] error 14:52:58.861: Jupyter Extension: Failed activating the python extension: Error: Extension 'ms-python.python' CANNOT use API proposal: terminalShellIntegration. Its package.json#enabledApiProposals-property declares: but NOT terminalShellIntegration. The missing proposal MUST be added and you must start in extension development mode or use the following command line switch: --enable-proposed-api ms-python.python at P (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:142:59143) at Object.onDidStartTerminalShellExecution (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:164:33147) at t.onDidStartTerminalShellExecution (/home/luke/.vscode-oss/extensions/ms-python.python-2024.12.3-universal/out/client/extension.js:2:338602) at t.registerTriggerForPipInTerminal (/home/luke/.vscode-oss/extensions/ms-python.python-2024.12.3-universal/out/client/extension.js:2:662828) at t.registerAllCreateEnvironmentFeatures (/home/luke/.vscode-oss/extensions/ms-python.python-2024.12.3-universal/out/client/extension.js:2:697793) at t.activateFeatures (/home/luke/.vscode-oss/extensions/ms-python.python-2024.12.3-universal/out/client/extension.js:2:397935) at /home/luke/.vscode-oss/extensions/ms-python.python-2024.12.3-universal/out/client/extension.js:2:2588640 at e (/home/luke/.vscode-oss/extensions/ms-python.python-2024.12.3-universal/out/client/extension.js:2:2588113) at m.n (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:144:6409) at m (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:144:6372) at m.l (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:144:5829) { message: "Activating extension 'ms-python.python' failed: Extension 'ms-python.python' CANNOT use API proposal: terminalShellIntegration.\n" + 'Its package.json#enabledApiProposals-property declares: but NOT terminalShellIntegration.\n' + ' The missing proposal MUST be added and you must start in extension development mode or use the following command line switch: --enable-proposed-api ms-python.python.' } console.ts:137 [Extension Host] error 14:52:58.861: Jupyter Extension: Failed activating the python extension: Error: Extension 'ms-python.python' CANNOT use API proposal: terminalShellIntegration. Its package.json#enabledApiProposals-property declares: but NOT terminalShellIntegration. The missing proposal MUST be added and you must start in extension development mode or use the following command line switch: --enable-proposed-api ms-python.python at P (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:142:59143) at Object.onDidStartTerminalShellExecution (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:164:33147) at t.onDidStartTerminalShellExecution (/home/luke/.vscode-oss/extensions/ms-python.python-2024.12.3-universal/out/client/extension.js:2:338602) at t.registerTriggerForPipInTerminal (/home/luke/.vscode-oss/extensions/ms-python.python-2024.12.3-universal/out/client/extension.js:2:662828) at t.registerAllCreateEnvironmentFeatures (/home/luke/.vscode-oss/extensions/ms-python.python-2024.12.3-universal/out/client/extension.js:2:697793) at t.activateFeatures (/home/luke/.vscode-oss/extensions/ms-python.python-2024.12.3-universal/out/client/extension.js:2:397935) at /home/luke/.vscode-oss/extensions/ms-python.python-2024.12.3-universal/out/client/extension.js:2:2588640 at e (/home/luke/.vscode-oss/extensions/ms-python.python-2024.12.3-universal/out/client/extension.js:2:2588113) at m.n (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:144:6409) at m (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:144:6372) at m.l (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:144:5829) { message: "Activating extension 'ms-python.python' failed: Extension 'ms-python.python' CANNOT use API proposal: terminalShellIntegration.\n" + 'Its package.json#enabledApiProposals-property declares: but NOT terminalShellIntegration.\n' + ' The missing proposal MUST be added and you must start in extension development mode or use the following command line switch: --enable-proposed-api ms-python.python.' } y @ console.ts:137 log.ts:439 ERR [Extension Host] error 14:52:58.867: Jupyter Extension: Failed activating the python extension: Error: Extension 'ms-python.python' CANNOT use API proposal: terminalShellIntegration. Its package.json#enabledApiProposals-property declares: but NOT terminalShellIntegration. The missing proposal MUST be added and you must start in extension development mode or use the following command line switch: --enable-proposed-api ms-python.python at P (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:142:59143) at Object.onDidStartTerminalShellExecution (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:164:33147) at t.onDidStartTerminalShellExecution (/home/luke/.vscode-oss/extensions/ms-python.python-2024.12.3-universal/out/client/extension.js:2:338602) at t.registerTriggerForPipInTerminal (/home/luke/.vscode-oss/extensions/ms-python.python-2024.12.3-universal/out/client/extension.js:2:662828) at t.registerAllCreateEnvironmentFeatures (/home/luke/.vscode-oss/extensions/ms-python.python-2024.12.3-universal/out/client/extension.js:2:697793) at t.activateFeatures (/home/luke/.vscode-oss/extensions/ms-python.python-2024.12.3-universal/out/client/extension.js:2:397935) at /home/luke/.vscode-oss/extensions/ms-python.python-2024.12.3-universal/out/client/extension.js:2:2588640 at e (/home/luke/.vscode-oss/extensions/ms-python.python-2024.12.3-universal/out/client/extension.js:2:2588113) at m.n (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:144:6409) at m (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:144:6372) at m.l (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:144:5829) { message: "Activating extension 'ms-python.python' failed: Extension 'ms-python.python' CANNOT use API proposal: terminalShellIntegration.\n" + 'Its package.json#enabledApiProposals-property declares: but NOT terminalShellIntegration.\n' + ' The missing proposal MUST be added and you must start in extension development mode or use the following command line switch: --enable-proposed-api ms-python.python.' } console.ts:137 [Extension Host] error 14:52:58.867: Jupyter Extension: Failed activating the python extension: Error: Extension 'ms-python.python' CANNOT use API proposal: terminalShellIntegration. Its package.json#enabledApiProposals-property declares: but NOT terminalShellIntegration. The missing proposal MUST be added and you must start in extension development mode or use the following command line switch: --enable-proposed-api ms-python.python at P (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:142:59143) at Object.onDidStartTerminalShellExecution (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:164:33147) at t.onDidStartTerminalShellExecution (/home/luke/.vscode-oss/extensions/ms-python.python-2024.12.3-universal/out/client/extension.js:2:338602) at t.registerTriggerForPipInTerminal (/home/luke/.vscode-oss/extensions/ms-python.python-2024.12.3-universal/out/client/extension.js:2:662828) at t.registerAllCreateEnvironmentFeatures (/home/luke/.vscode-oss/extensions/ms-python.python-2024.12.3-universal/out/client/extension.js:2:697793) at t.activateFeatures (/home/luke/.vscode-oss/extensions/ms-python.python-2024.12.3-universal/out/client/extension.js:2:397935) at /home/luke/.vscode-oss/extensions/ms-python.python-2024.12.3-universal/out/client/extension.js:2:2588640 at e (/home/luke/.vscode-oss/extensions/ms-python.python-2024.12.3-universal/out/client/extension.js:2:2588113) at m.n (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:144:6409) at m (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:144:6372) at m.l (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:144:5829) { message: "Activating extension 'ms-python.python' failed: Extension 'ms-python.python' CANNOT use API proposal: terminalShellIntegration.\n" + 'Its package.json#enabledApiProposals-property declares: but NOT terminalShellIntegration.\n' + ' The missing proposal MUST be added and you must start in extension development mode or use the following command line switch: --enable-proposed-api ms-python.python.' } y @ console.ts:137 log.ts:439 ERR [Extension Host] error 14:52:58.872: Jupyter Extension: Failed activating the python extension: Error: Extension 'ms-python.python' CANNOT use API proposal: terminalShellIntegration. Its package.json#enabledApiProposals-property declares: but NOT terminalShellIntegration. The missing proposal MUST be added and you must start in extension development mode or use the following command line switch: --enable-proposed-api ms-python.python at P (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:142:59143) at Object.onDidStartTerminalShellExecution (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:164:33147) at t.onDidStartTerminalShellExecution (/home/luke/.vscode-oss/extensions/ms-python.python-2024.12.3-universal/out/client/extension.js:2:338602) at t.registerTriggerForPipInTerminal (/home/luke/.vscode-oss/extensions/ms-python.python-2024.12.3-universal/out/client/extension.js:2:662828) at t.registerAllCreateEnvironmentFeatures (/home/luke/.vscode-oss/extensions/ms-python.python-2024.12.3-universal/out/client/extension.js:2:697793) at t.activateFeatures (/home/luke/.vscode-oss/extensions/ms-python.python-2024.12.3-universal/out/client/extension.js:2:397935) at /home/luke/.vscode-oss/extensions/ms-python.python-2024.12.3-universal/out/client/extension.js:2:2588640 at e (/home/luke/.vscode-oss/extensions/ms-python.python-2024.12.3-universal/out/client/extension.js:2:2588113) at m.n (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:144:6409) at m (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:144:6372) at m.l (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:144:5829) { message: "Activating extension 'ms-python.python' failed: Extension 'ms-python.python' CANNOT use API proposal: terminalShellIntegration.\n" + 'Its package.json#enabledApiProposals-property declares: but NOT terminalShellIntegration.\n' + ' The missing proposal MUST be added and you must start in extension development mode or use the following command line switch: --enable-proposed-api ms-python.python.' } console.ts:137 [Extension Host] error 14:52:58.872: Jupyter Extension: Failed activating the python extension: Error: Extension 'ms-python.python' CANNOT use API proposal: terminalShellIntegration. Its package.json#enabledApiProposals-property declares: but NOT terminalShellIntegration. The missing proposal MUST be added and you must start in extension development mode or use the following command line switch: --enable-proposed-api ms-python.python at P (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:142:59143) at Object.onDidStartTerminalShellExecution (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:164:33147) at t.onDidStartTerminalShellExecution (/home/luke/.vscode-oss/extensions/ms-python.python-2024.12.3-universal/out/client/extension.js:2:338602) at t.registerTriggerForPipInTerminal (/home/luke/.vscode-oss/extensions/ms-python.python-2024.12.3-universal/out/client/extension.js:2:662828) at t.registerAllCreateEnvironmentFeatures (/home/luke/.vscode-oss/extensions/ms-python.python-2024.12.3-universal/out/client/extension.js:2:697793) at t.activateFeatures (/home/luke/.vscode-oss/extensions/ms-python.python-2024.12.3-universal/out/client/extension.js:2:397935) at /home/luke/.vscode-oss/extensions/ms-python.python-2024.12.3-universal/out/client/extension.js:2:2588640 at e (/home/luke/.vscode-oss/extensions/ms-python.python-2024.12.3-universal/out/client/extension.js:2:2588113) at m.n (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:144:6409) at m (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:144:6372) at m.l (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:144:5829) { message: "Activating extension 'ms-python.python' failed: Extension 'ms-python.python' CANNOT use API proposal: terminalShellIntegration.\n" + 'Its package.json#enabledApiProposals-property declares: but NOT terminalShellIntegration.\n' + ' The missing proposal MUST be added and you must start in extension development mode or use the following command line switch: --enable-proposed-api ms-python.python.' } y @ console.ts:137 log.ts:439 ERR [Extension Host] error 14:52:58.874: Jupyter Extension: Failed activating the python extension: Error: Extension 'ms-python.python' CANNOT use API proposal: terminalShellIntegration. Its package.json#enabledApiProposals-property declares: but NOT terminalShellIntegration. The missing proposal MUST be added and you must start in extension development mode or use the following command line switch: --enable-proposed-api ms-python.python at P (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:142:59143) at Object.onDidStartTerminalShellExecution (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:164:33147) at t.onDidStartTerminalShellExecution (/home/luke/.vscode-oss/extensions/ms-python.python-2024.12.3-universal/out/client/extension.js:2:338602) at t.registerTriggerForPipInTerminal (/home/luke/.vscode-oss/extensions/ms-python.python-2024.12.3-universal/out/client/extension.js:2:662828) at t.registerAllCreateEnvironmentFeatures (/home/luke/.vscode-oss/extensions/ms-python.python-2024.12.3-universal/out/client/extension.js:2:697793) at t.activateFeatures (/home/luke/.vscode-oss/extensions/ms-python.python-2024.12.3-universal/out/client/extension.js:2:397935) at /home/luke/.vscode-oss/extensions/ms-python.python-2024.12.3-universal/out/client/extension.js:2:2588640 at e (/home/luke/.vscode-oss/extensions/ms-python.python-2024.12.3-universal/out/client/extension.js:2:2588113) at m.n (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:144:6409) at m (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:144:6372) at m.l (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:144:5829) { message: "Activating extension 'ms-python.python' failed: Extension 'ms-python.python' CANNOT use API proposal: terminalShellIntegration.\n" + 'Its package.json#enabledApiProposals-property declares: but NOT terminalShellIntegration.\n' + ' The missing proposal MUST be added and you must start in extension development mode or use the following command line switch: --enable-proposed-api ms-python.python.' } console.ts:137 [Extension Host] error 14:52:58.874: Jupyter Extension: Failed activating the python extension: Error: Extension 'ms-python.python' CANNOT use API proposal: terminalShellIntegration. Its package.json#enabledApiProposals-property declares: but NOT terminalShellIntegration. The missing proposal MUST be added and you must start in extension development mode or use the following command line switch: --enable-proposed-api ms-python.python at P (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:142:59143) at Object.onDidStartTerminalShellExecution (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:164:33147) at t.onDidStartTerminalShellExecution (/home/luke/.vscode-oss/extensions/ms-python.python-2024.12.3-universal/out/client/extension.js:2:338602) at t.registerTriggerForPipInTerminal (/home/luke/.vscode-oss/extensions/ms-python.python-2024.12.3-universal/out/client/extension.js:2:662828) at t.registerAllCreateEnvironmentFeatures (/home/luke/.vscode-oss/extensions/ms-python.python-2024.12.3-universal/out/client/extension.js:2:697793) at t.activateFeatures (/home/luke/.vscode-oss/extensions/ms-python.python-2024.12.3-universal/out/client/extension.js:2:397935) at /home/luke/.vscode-oss/extensions/ms-python.python-2024.12.3-universal/out/client/extension.js:2:2588640 at e (/home/luke/.vscode-oss/extensions/ms-python.python-2024.12.3-universal/out/client/extension.js:2:2588113) at m.n (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:144:6409) at m (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:144:6372) at m.l (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:144:5829) { message: "Activating extension 'ms-python.python' failed: Extension 'ms-python.python' CANNOT use API proposal: terminalShellIntegration.\n" + 'Its package.json#enabledApiProposals-property declares: but NOT terminalShellIntegration.\n' + ' The missing proposal MUST be added and you must start in extension development mode or use the following command line switch: --enable-proposed-api ms-python.python.' } y @ console.ts:137 log.ts:439 ERR [Extension Host] error 14:52:58.875: Jupyter Extension: Failed activating the python extension: Error: Extension 'ms-python.python' CANNOT use API proposal: terminalShellIntegration. Its package.json#enabledApiProposals-property declares: but NOT terminalShellIntegration. The missing proposal MUST be added and you must start in extension development mode or use the following command line switch: --enable-proposed-api ms-python.python at P (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:142:59143) at Object.onDidStartTerminalShellExecution (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:164:33147) at t.onDidStartTerminalShellExecution (/home/luke/.vscode-oss/extensions/ms-python.python-2024.12.3-universal/out/client/extension.js:2:338602) at t.registerTriggerForPipInTerminal (/home/luke/.vscode-oss/extensions/ms-python.python-2024.12.3-universal/out/client/extension.js:2:662828) at t.registerAllCreateEnvironmentFeatures (/home/luke/.vscode-oss/extensions/ms-python.python-2024.12.3-universal/out/client/extension.js:2:697793) at t.activateFeatures (/home/luke/.vscode-oss/extensions/ms-python.python-2024.12.3-universal/out/client/extension.js:2:397935) at /home/luke/.vscode-oss/extensions/ms-python.python-2024.12.3-universal/out/client/extension.js:2:2588640 at e (/home/luke/.vscode-oss/extensions/ms-python.python-2024.12.3-universal/out/client/extension.js:2:2588113) at m.n (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:144:6409) at m (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:144:6372) at m.l (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:144:5829) { message: "Activating extension 'ms-python.python' failed: Extension 'ms-python.python' CANNOT use API proposal: terminalShellIntegration.\n" + 'Its package.json#enabledApiProposals-property declares: but NOT terminalShellIntegration.\n' + ' The missing proposal MUST be added and you must start in extension development mode or use the following command line switch: --enable-proposed-api ms-python.python.' } console.ts:137 [Extension Host] error 14:52:58.875: Jupyter Extension: Failed activating the python extension: Error: Extension 'ms-python.python' CANNOT use API proposal: terminalShellIntegration. Its package.json#enabledApiProposals-property declares: but NOT terminalShellIntegration. The missing proposal MUST be added and you must start in extension development mode or use the following command line switch: --enable-proposed-api ms-python.python at P (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:142:59143) at Object.onDidStartTerminalShellExecution (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:164:33147) at t.onDidStartTerminalShellExecution (/home/luke/.vscode-oss/extensions/ms-python.python-2024.12.3-universal/out/client/extension.js:2:338602) at t.registerTriggerForPipInTerminal (/home/luke/.vscode-oss/extensions/ms-python.python-2024.12.3-universal/out/client/extension.js:2:662828) at t.registerAllCreateEnvironmentFeatures (/home/luke/.vscode-oss/extensions/ms-python.python-2024.12.3-universal/out/client/extension.js:2:697793) at t.activateFeatures (/home/luke/.vscode-oss/extensions/ms-python.python-2024.12.3-universal/out/client/extension.js:2:397935) at /home/luke/.vscode-oss/extensions/ms-python.python-2024.12.3-universal/out/client/extension.js:2:2588640 at e (/home/luke/.vscode-oss/extensions/ms-python.python-2024.12.3-universal/out/client/extension.js:2:2588113) at m.n (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:144:6409) at m (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:144:6372) at m.l (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:144:5829) { message: "Activating extension 'ms-python.python' failed: Extension 'ms-python.python' CANNOT use API proposal: terminalShellIntegration.\n" + 'Its package.json#enabledApiProposals-property declares: but NOT terminalShellIntegration.\n' + ' The missing proposal MUST be added and you must start in extension development mode or use the following command line switch: --enable-proposed-api ms-python.python.' } y @ console.ts:137 log.ts:439 ERR [Extension Host] error 14:52:58.885: Jupyter Extension: Failed activating the python extension: Error: Extension 'ms-python.python' CANNOT use API proposal: terminalShellIntegration. Its package.json#enabledApiProposals-property declares: but NOT terminalShellIntegration. The missing proposal MUST be added and you must start in extension development mode or use the following command line switch: --enable-proposed-api ms-python.python at P (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:142:59143) at Object.onDidStartTerminalShellExecution (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:164:33147) at t.onDidStartTerminalShellExecution (/home/luke/.vscode-oss/extensions/ms-python.python-2024.12.3-universal/out/client/extension.js:2:338602) at t.registerTriggerForPipInTerminal (/home/luke/.vscode-oss/extensions/ms-python.python-2024.12.3-universal/out/client/extension.js:2:662828) at t.registerAllCreateEnvironmentFeatures (/home/luke/.vscode-oss/extensions/ms-python.python-2024.12.3-universal/out/client/extension.js:2:697793) at t.activateFeatures (/home/luke/.vscode-oss/extensions/ms-python.python-2024.12.3-universal/out/client/extension.js:2:397935) at /home/luke/.vscode-oss/extensions/ms-python.python-2024.12.3-universal/out/client/extension.js:2:2588640 at e (/home/luke/.vscode-oss/extensions/ms-python.python-2024.12.3-universal/out/client/extension.js:2:2588113) at m.n (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:144:6409) at m (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:144:6372) at m.l (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:144:5829) { message: "Activating extension 'ms-python.python' failed: Extension 'ms-python.python' CANNOT use API proposal: terminalShellIntegration.\n" + 'Its package.json#enabledApiProposals-property declares: but NOT terminalShellIntegration.\n' + ' The missing proposal MUST be added and you must start in extension development mode or use the following command line switch: --enable-proposed-api ms-python.python.' } console.ts:137 [Extension Host] error 14:52:58.885: Jupyter Extension: Failed activating the python extension: Error: Extension 'ms-python.python' CANNOT use API proposal: terminalShellIntegration. Its package.json#enabledApiProposals-property declares: but NOT terminalShellIntegration. The missing proposal MUST be added and you must start in extension development mode or use the following command line switch: --enable-proposed-api ms-python.python at P (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:142:59143) at Object.onDidStartTerminalShellExecution (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:164:33147) at t.onDidStartTerminalShellExecution (/home/luke/.vscode-oss/extensions/ms-python.python-2024.12.3-universal/out/client/extension.js:2:338602) at t.registerTriggerForPipInTerminal (/home/luke/.vscode-oss/extensions/ms-python.python-2024.12.3-universal/out/client/extension.js:2:662828) at t.registerAllCreateEnvironmentFeatures (/home/luke/.vscode-oss/extensions/ms-python.python-2024.12.3-universal/out/client/extension.js:2:697793) at t.activateFeatures (/home/luke/.vscode-oss/extensions/ms-python.python-2024.12.3-universal/out/client/extension.js:2:397935) at /home/luke/.vscode-oss/extensions/ms-python.python-2024.12.3-universal/out/client/extension.js:2:2588640 at e (/home/luke/.vscode-oss/extensions/ms-python.python-2024.12.3-universal/out/client/extension.js:2:2588113) at m.n (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:144:6409) at m (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:144:6372) at m.l (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:144:5829) { message: "Activating extension 'ms-python.python' failed: Extension 'ms-python.python' CANNOT use API proposal: terminalShellIntegration.\n" + 'Its package.json#enabledApiProposals-property declares: but NOT terminalShellIntegration.\n' + ' The missing proposal MUST be added and you must start in extension development mode or use the following command line switch: --enable-proposed-api ms-python.python.' } y @ console.ts:137 log.ts:439 ERR [Extension Host] error 14:52:58.888: Jupyter Extension: Failed activating the python extension: Error: Extension 'ms-python.python' CANNOT use API proposal: terminalShellIntegration. Its package.json#enabledApiProposals-property declares: but NOT terminalShellIntegration. The missing proposal MUST be added and you must start in extension development mode or use the following command line switch: --enable-proposed-api ms-python.python at P (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:142:59143) at Object.onDidStartTerminalShellExecution (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:164:33147) at t.onDidStartTerminalShellExecution (/home/luke/.vscode-oss/extensions/ms-python.python-2024.12.3-universal/out/client/extension.js:2:338602) at t.registerTriggerForPipInTerminal (/home/luke/.vscode-oss/extensions/ms-python.python-2024.12.3-universal/out/client/extension.js:2:662828) at t.registerAllCreateEnvironmentFeatures (/home/luke/.vscode-oss/extensions/ms-python.python-2024.12.3-universal/out/client/extension.js:2:697793) at t.activateFeatures (/home/luke/.vscode-oss/extensions/ms-python.python-2024.12.3-universal/out/client/extension.js:2:397935) at /home/luke/.vscode-oss/extensions/ms-python.python-2024.12.3-universal/out/client/extension.js:2:2588640 at e (/home/luke/.vscode-oss/extensions/ms-python.python-2024.12.3-universal/out/client/extension.js:2:2588113) at m.n (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:144:6409) at m (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:144:6372) at m.l (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:144:5829) { message: "Activating extension 'ms-python.python' failed: Extension 'ms-python.python' CANNOT use API proposal: terminalShellIntegration.\n" + 'Its package.json#enabledApiProposals-property declares: but NOT terminalShellIntegration.\n' + ' The missing proposal MUST be added and you must start in extension development mode or use the following command line switch: --enable-proposed-api ms-python.python.' } console.ts:137 [Extension Host] error 14:52:58.888: Jupyter Extension: Failed activating the python extension: Error: Extension 'ms-python.python' CANNOT use API proposal: terminalShellIntegration. Its package.json#enabledApiProposals-property declares: but NOT terminalShellIntegration. The missing proposal MUST be added and you must start in extension development mode or use the following command line switch: --enable-proposed-api ms-python.python at P (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:142:59143) at Object.onDidStartTerminalShellExecution (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:164:33147) at t.onDidStartTerminalShellExecution (/home/luke/.vscode-oss/extensions/ms-python.python-2024.12.3-universal/out/client/extension.js:2:338602) at t.registerTriggerForPipInTerminal (/home/luke/.vscode-oss/extensions/ms-python.python-2024.12.3-universal/out/client/extension.js:2:662828) at t.registerAllCreateEnvironmentFeatures (/home/luke/.vscode-oss/extensions/ms-python.python-2024.12.3-universal/out/client/extension.js:2:697793) at t.activateFeatures (/home/luke/.vscode-oss/extensions/ms-python.python-2024.12.3-universal/out/client/extension.js:2:397935) at /home/luke/.vscode-oss/extensions/ms-python.python-2024.12.3-universal/out/client/extension.js:2:2588640 at e (/home/luke/.vscode-oss/extensions/ms-python.python-2024.12.3-universal/out/client/extension.js:2:2588113) at m.n (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:144:6409) at m (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:144:6372) at m.l (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:144:5829) { message: "Activating extension 'ms-python.python' failed: Extension 'ms-python.python' CANNOT use API proposal: terminalShellIntegration.\n" + 'Its package.json#enabledApiProposals-property declares: but NOT terminalShellIntegration.\n' + ' The missing proposal MUST be added and you must start in extension development mode or use the following command line switch: --enable-proposed-api ms-python.python.' } y @ console.ts:137 console.ts:137 [Extension Host] rejected promise not handled within 1 second: Error: Extension 'ms-python.python' CANNOT use API proposal: testObserver. Its package.json#enabledApiProposals-property declares: but NOT testObserver. The missing proposal MUST be added and you must start in extension development mode or use the following command line switch: --enable-proposed-api ms-python.python y @ console.ts:137 console.ts:137 [Extension Host] stack trace: Error: Extension 'ms-python.python' CANNOT use API proposal: testObserver. Its package.json#enabledApiProposals-property declares: but NOT testObserver. The missing proposal MUST be added and you must start in extension development mode or use the following command line switch: --enable-proposed-api ms-python.python at P (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:142:59143) at Object.get testResults [as testResults] (/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:164:25438) at T.activate (/home/luke/.vscode-oss/extensions/ms-python.python-2024.12.3-universal/out/client/extension.js:2:845522) at /home/luke/.vscode-oss/extensions/ms-python.python-2024.12.3-universal/out/client/extension.js:2:2460 at Array.map () at m.activateWorkspace (/home/luke/.vscode-oss/extensions/ms-python.python-2024.12.3-universal/out/client/extension.js:2:2450) y @ console.ts:137 mainThreadExtensionService.ts:78 [ms-python.python]Extension 'ms-python.python' CANNOT use API proposal: testObserver. Its package.json#enabledApiProposals-property declares: but NOT testObserver. The missing proposal MUST be added and you must start in extension development mode or use the following command line switch: --enable-proposed-api ms-python.python $onExtensionRuntimeError @ mainThreadExtensionService.ts:78 mainThreadExtensionService.ts:79 Error: Extension 'ms-python.python' CANNOT use API proposal: testObserver. Its package.json#enabledApiProposals-property declares: but NOT testObserver. The missing proposal MUST be added and you must start in extension development mode or use the following command line switch: --enable-proposed-api ms-python.python at P (vscode-file://vscode-app/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:142:59143) at Object.get testResults [as testResults] (vscode-file://vscode-app/usr/lib/code/out/vs/workbench/api/node/extensionHostProcess.js:164:25438) at T.activate (vscode-file://vscode-app/home/luke/.vscode-oss/extensions/ms-python.python-2024.12.3-universal/out/client/extension.js:2:845522) at vscode-file://vscode-app/home/luke/.vscode-oss/extensions/ms-python.python-2024.12.3-universal/out/client/extension.js:2:2460 at Array.map () at m.activateWorkspace (vscode-file://vscode-app/home/luke/.vscode-oss/extensions/ms-python.python-2024.12.3-universal/out/client/extension.js:2:2450) $onExtensionRuntimeError @ mainThreadExtensionService.ts:79 textMateTokenizationSupport.ts:63 Time limit reached when tokenizing line:

csv_file_name = './Archiv agregovaných dat detektorů (cykly)_499

Fryštácká x Lázně (Kostelec tokenizeEncoded @ textMateTokenizationSupport.ts:63 webviewElement.ts:482 An iframe which has both allow-scripts and allow-same-origin for its sandbox attribute can escape its sandboxing. mountTo @ webviewElement.ts:482 log.ts:429 WARN Creation of workbench contribution 'workbench.contrib.keywordActivation' took 178ms. log.ts:429 WARN Creation of workbench contribution 'workbench.contrib.configurationMigration' took 518ms. log.ts:419 INFO [perf] Render performance baseline is 294ms log.ts:429 WARN Creation of workbench contribution 'workbench.contrib.dynamicWindowConfiguration' took 229ms. po 22. 7. 2024 v 4:38 odesílatel Don Jayamanne @.***> napsal:

Please could you

  • Download the attached file
  • Extract this file
  • Open VS Code and select the command Install from VSIX
  • Select the above extracted VSIX
  • When prompted to reload VS Code, please do so
  • Try to replicate the issue once again

ms-toolsai-jupyter-insiders.vsix (1).zip https://github.com/user-attachments/files/16327206/ms-toolsai-jupyter-insiders.vsix.1.zip

— Reply to this email directly, view it on GitHub https://github.com/microsoft/vscode-jupyter/issues/15547#issuecomment-2241934198, or unsubscribe https://github.com/notifications/unsubscribe-auth/BH3PXS6F7CHX5ADEW7FTP33ZNRWDNAVCNFSM6AAAAABGI4LS3OVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDENBRHEZTIMJZHA . You are receiving this because you were mentioned.Message ID: @.***>

DonJayamanne commented 1 month ago

The reason you do not see Python Kernels is because the Python extension isn't loading,

Please file an issue against the Python extension with the following information

Besides, ms-python extesion is not laoding properly - resulting in cpu overload. The following error message appears:

Extension activation failed, run the 'Developer: Toggle Developer Tools' command for more information.