We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 838e593 commit ec2c1a5Copy full SHA for ec2c1a5
interpreter/core/code_interpreters/languages/python.py
@@ -22,7 +22,7 @@ def __init__(self, config):
22
self.__class__ = PythonVision
23
self.__init__(config)
24
else:
25
- executable = sys.executable
+ executable = "python"
26
if os.name != "nt": # not Windows
27
executable = shlex.quote(executable)
28
self.start_cmd = executable + " -i -q -u"
0 commit comments