`Specify local or remote Jupyter server for connections` broken
See original GitHub issueIssue Type: Bug
Communicating the migration instructions after factoring out Jupyter extension from the Python extension has been ham-handed. among others: https://github.com/microsoft/vscode-jupyter/issues/1057
It is not at all clear that to get to the pop-up selection menu to input a new server in the <kbd>ctrl</kbd>+<kbd>shift</kbd>+<kbd>p</kbd> menu, input Jupyter: Specify local or remote Jupyter server for connections
.
If I select Jupyter: Specify local or remote Jupyter server for connections
, even if its the same server it is already connected to, VS Code will force me to reload/restart VS Code. If I don’t restart and select Jupyter: Specify local or remote Jupyter server for connections
again, I get a VS Code ERROR:
Command ‘Jupyter: Specify local or remote Jupyter server for connections’ resulted in an error (command ‘jupyter.selectjupyteruri’ not found)
Also, how can I delete urls from the list of recently used servers+tokens? It is keeping a list of all of the Jupyter servers that have long since been shut down.
Is it possible to specify the server in the .code-workspace
settings like I used to before the Jupyter extension was factored out of the Python extension? It was much more convenient to simply specify “python.dataScience.jupyterServerURI”: “http://100.100.100.001:8888/?token=*******************” in the settings.
Why was the python.dataScience.jupyterServerURI
setting not ported over to the Jupyter extension as jupyter.jupyterServerURI
along with most of the other python.dataScience
settings?
Extension version: 2020.11.358541065 VS Code version: Code 1.51.1 (e5a624b788d92b8d34d1392e4c4d9789406efe8f, 2020-11-10T23:34:32.027Z) OS version: Windows_NT x64 10.0.18363
System Info
Item | Value |
---|---|
CPUs | Intel® Core™ i5-6300U CPU @ 2.40GHz (4 x 2496) |
GPU Status | 2d_canvas: enabled flash_3d: enabled flash_stage3d: enabled flash_stage3d_baseline: enabled gpu_compositing: enabled multiple_raster_threads: enabled_on oop_rasterization: disabled_off opengl: enabled_on protected_video_decode: unavailable_off rasterization: enabled skia_renderer: disabled_off_ok video_decode: enabled vulkan: disabled_off webgl: enabled webgl2: enabled |
Load (avg) | undefined |
Memory (System) | 15.88GB (1.95GB free) |
Process Argv | –crash-reporter-id f652528b-5678-4b12-9ca0-3de6b1e1135f |
Screen Reader | no |
VM | 0% |
Issue Analytics
- State:
- Created 3 years ago
- Reactions:2
- Comments:10 (5 by maintainers)
Top GitHub Comments
The only way to view the setting is to bring up the ‘Specify local or remote Jupyter server for connections’ picker. It will show the current value at the top:
We should probably have a ‘what’s changed’ in the release notes that describes what’s changed.
I can do a brief summary here:
python.dataScience
settings are nowjupyter.
settings except for one exceptionpython.dataScience.jupyterServerURI
has been removed. You can no longer set this in your settings.json. It’s encrypted now. You have to use the command above.As far as I remember that should be the sum total of the differences. I’ll add a bug to put this in our release notes (and or documentation)
We’re also planning on revamping the remote support. Something more akin to this is coming: https://github.com/microsoft/vscode-jupyter/issues/1366