8000 Start powershell in noninteractive mode since stdin isn't currently s… · vors/jupyter-powershell@fb77886 · GitHub
[go: up one dir, main page]

Skip to content

Commit fb77886

Browse files
committed
Start powershell in noninteractive mode since stdin isn't currently supported.
1 parent 3d74f2d commit fb77886

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

powershell_kernel/kernel.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def __init__(self, **kwargs):
4646
except:
4747
powershell_command = get_powershell()
4848

49-
repl = subprocess_repl.SubprocessRepl([powershell_command, '-noprofile', '-File', '-'])
49+
repl = subprocess_repl.SubprocessRepl([powershell_command, '-noninteractive', '-noprofile', '-File', '-'])
5050
self.proxy = powershell_proxy.ReplProxy(repl)
5151

5252
def do_execute(self, code, silent, store_history=True,

0 commit comments

Comments
 (0)
0