We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3231002 commit 6603be9Copy full SHA for 6603be9
interpreter/core/computer/terminal/languages/jupyter_language.py
@@ -19,8 +19,8 @@
19
20
DEBUG_MODE = False
21
22
-
23
-# Handling the case where the script is called as a kernel
+# When running from an executable, ipykernel calls itself infinitely
+# This is a workaround to detect it and launch it manually
24
if 'ipykernel_launcher' in sys.argv:
25
if sys.path[0] == '':
26
del sys.path[0]
@@ -31,7 +31,6 @@
31
sys.exit(0)
32
33
34
-# Rest of your Open Interpreter code
35
class JupyterLanguage(BaseLanguage):
36
file_extension = "py"
37
name = "Python"
0 commit comments