Home > other >  Python Scripts and Jupyter Notebook on VS Code
Python Scripts and Jupyter Notebook on VS Code

Time:06-15

I am running a python script on VS code (*.py). Simultaneously, I am running a cell on Jupyter Notebook on VS Code also. If I interrupt the kernel of the jupyter cell, will this interrupt the procedure on the py script?

CodePudding user response:

No, they are independent.

The kernel in ipynb does not affect the terminals used by Python

  • Related