Jupyter notebook in vscode installing everytime I open VS Code - visual-studio-code

Whenever I open VS Code & go to Extensions, it always shows Jupyter as Installing, Why is it so?

Related

I have to "source ~/.zshrc" everytime I open a new terminal only in vscode

Currently have to manually write source ./zshrc to get my zsh plugins to work within the vscode terminal window, however I dont have this issue if I open a zsh shell outside of vscode. I am using Debian on wsl2.
In terminal I get proper syntax example (due to a plugin)
However in vscode I dont unless i run source ./zshrc
As seen here:

How I should open .ipynb as new notebook version in vs code

I reinstalled my vs code, then, when I open the .ipynb in vscode, I also reinstalled the jupyter plugin. But I found the old notebook version opened.
Before I reinstalled these programs, they were still new versions.
I suggest using Anaconda Navigator to download & use a virtual environment that could be easier to use in most cases.To use the virtual environment use -
Ctrl+Shift+P or Python: Select Interpreter command from the Command Palette.However,please make sure to add environment variables to your VS-Code.
Otherwise,best bet may be to use the Jupyter notebook from Anaconda Navigator which pretty much does the same thing

List of running notebooks on current Jupyter server in VS Code

I have been accessing a remote Jupyter server through my browser but for better debugging, I am now switching to accessing my server over SSH in Visual Studio Code. I installed the Jupyer extension and can run my notebooks fine. But in the browser interface, there is a "Running" tab (as shown in the image) that lists all the notebooks I am running and I can shut them down from there easily. How to do the same in VS Code? I just need to view this list. A terminal command, or anything that can tell me which notebooks are running will be very helpful.
It seems to be an visual studio issue: https://stackoverflow.com/a/71257239/5141404
I work in an alternative way, all files in the open editors is running jupyter notebook.

Cannot select Jupyter Python Kernel in notebook

I am using Visual Studio Code, Jupyter and Anaconda 3.8.5. I have a notebook, in that notebook I cannot select the kernel I want. The kernel is visible, I can click on it, a pop-up below appears stating kernel is switching, but it is not selected.
What I have tried:
Check ipykernel is installed.
Reinstalled Jupyter in that environment.
Tried restarting Visual Studio Code.
Restarted machine.
Tried to see if I could set the kernel using a Visual Studio Code workspace setting (nope).
Ideas appreciated.

how to disable jupyter editor in vscode

like the title mentioned, how to disable jupyter editor in vscode?
every time,I want to new a file just for text or markdown,I do not like to appear a choice between two, but just default for the inner editor applied by vscode. and how can I configure this.
for right now,I never need to use jupyter notebook.
It seems to be appeared unexpected after vscode update or installed some python package.
This can be disabled by python.dataScience.useNotebookEditor if you are using the Python extension.
Source: https://github.com/microsoft/vscode/issues/103526
Update:
You also need the Jupyter extension along with Python extension for VS Code. The setting key has been renamed from python.dataScience.useNotebookEditor to jupyter.useNotebookEditor^update
With the July/August 2021 introduction of the new Native Notebook Support in VS Code, the answers involving your settings.json are now obsolete. Now the Notebook editor will be used to open .*ipynb files even if you've never installed the Python or Jupyter extensions.
However, you can open a *.ipynb file in the regular text editor by right-clicking on the file in the VS Code File Explorer, doing "Open With", and then selecting the "Text Editor".