我正在尝试在Google Colab上运行一个就绪的项目。当我运行外壳程序时,它出现以下错误:
/bin/bash: example.sh: command not found
我该如何解决这个问题?
答案 0 :(得分:4)
您有两个选择可以在google-colab
中运行shell脚本:
1)使用!
执行一个脚本:
!sh example.sh
!echo "I am your code !!!"
2)使用%%shell
作为shell脚本执行整个代码块:
%%shell
sh example.sh
echo "You should add %% "
注意:在第二种方法中,将整个块解释为shell脚本。您不需要在每个脚本的开头都!
。