Closed
Description
Refs: #7538
Complexity: 3
Authors: @DonJayamanne
Requirements
- Install prerelease jupyter extension into VS Code Insiders (desktop)
- Have a python environment that you can run jupyter from. (https://jupyter.org/install)
- Be familiar with jupyter notebooks
- Use Python 3.6 or later (please ensure you aren't using Python 2, use
python --version
to check the version) - Ensure the following setting is added to your settings.json file (this is a hidden setting only used for testing)
"jupyter.disableZMQSupport": true,
Test Error message
- Open a folder in VS Code
- Add a file named
email.py
to the root directory of the workspace folder - Create an ipynb file in the root directory
- Run a cell in the ipynb file with any code such as
print(1234)
- Wait for the kernel startup to fail (this can take around 30 seconds)
- Verify an error message is displayed indicating the fact that the presence of the file
email.py
may have caused the kernel to crash - Delete the
email.py
file and verify the kernel now runs.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment