bash_kernel
bash_kernel copied to clipboard
can't read input
enter and execute "read input" in cell, no way to type text
Here is a related issue in jupyter lab. It seems that jupyter has a standard pop-up for getting user input. Presumably the bash kernel needs a way of invoking that pop-up. https://github.com/jupyterlab/jupyterlab/issues/8522
Here is another related issue. It addresses commands that read data from stdin. https://github.com/takluyver/bash_kernel/issues/72 If there is a user input prompt that asked for text from the user and saved it in a variable then we could echo $myvar | mycommand.
Thank you!