我一直在使用jupyter笔记本一段时间,并且我正在尝试更多地了解jupyter控制台和bash脚本。我无法弄清楚如何使用bash脚本运行最基本的命令:
#!/bin/bash
clear
echo "Testing jupyter console from bash script"
echo
jupyter console
print('hi')
exit
这是我的IDE中的样子(与终端相同的输出):
那么可以编写一个bash / jupyter控制台脚本,还是有其他方法可以做这种事情?