You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: PYTHON_INTERACTIVE_TROUBLESHOOTING.md
+13-4Lines changed: 13 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
-
# Trouble shooting the Python Interactive Window
1
+
# Troubleshooting Jupyter issues in the Python Interactive Window or Notebook Editor
2
2
3
-
This document is intended to help troubleshoot problems in the Python Interactive Window.
3
+
This document is intended to help troubleshoot problems with starting Jupyter in the Python Interactive Window or Notebook Editor.
4
4
5
5
---
6
6
## Jupyter Not Starting
@@ -10,12 +10,21 @@ This error can happen when
10
10
* Jupyter is not installed
11
11
* You picked the wrong Python environment (one that doesn't have Jupyter installed).
12
12
13
-
### The first step is to verify you are running the Python environment you want.
13
+
### The first step is to verify you are running the Python environment that you have Jupyter installed into.
14
14
15
-
The Python you're using is picked with the selection dropdown on the bottom left of the VS Code window:
15
+
The first time that you start the Interactive Window or the Notebook Editor VS Code will attempt to locate a Python environment that has Jupyter installed in it and can start a notebook.
16
+
17
+
The first Python interpreter to check will be the one selected with the selection dropdown on the bottom left of the VS Code window:
16
18
17
19

18
20
21
+
Once a suitable interpreter with Jupyter has been located, VS Code will continue to use that interpreter for starting up Jupyter servers.
22
+
If no interpreters are found with Jupyter installed a popup message will ask if you would like to install Jupyter into the current interpreter.
23
+
24
+

25
+
26
+
If you would like to change from using the saved Python interpreter to a new interpreter for launching Jupyter just use the "Python: Select interpreter to start Jupyter server" VS Code command to change it.
27
+
19
28
### The second step is to check that jupyter isn't giving any errors on startup.
20
29
21
30
Run the following command from an environment that matches the Python you selected:
0 commit comments