如何在google colab中与当前运行的命令单元进行交互?

时间:2018-03-12 05:03:19

标签: terminal jupyter-notebook google-colaboratory

这里的细胞是什么样的

protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
        **request.getSession().setAttribute("mango", "Mango is a sweet Fruit");**
        response.sendRedirect(request.getContextPath() + "/index.jsp");
    }

如何对此运行命令单元格给出是或否?

2 个答案:

答案 0 :(得分:0)

一旦它运行,就没有简单的方法与流程互动;两个选项:

  1. yes从shell传递给该程序,例如echo 'yes' | git ...y | git ...(如果y作为回复)。
  2. 如果可能,请通过https路径而不是git路径进行克隆。

答案 1 :(得分:0)

将“-y”或“--yes”与命令一起传递。

例如:

!pip uninstall lightgbm --yes