无法在Google colab中运行包含“ ./”的代码

时间:2020-06-25 04:48:42

标签: google-colaboratory

我是colab的新手,我似乎找不到如何在colab中运行此代码的原始代码是:

cd megatools-1.10.3/ ./configure make sudo make install 

到目前为止,我只有:

%cd megatools-1.10.3/ ./configure make sudo make install 

能帮我吗?谢谢。

2 个答案:

答案 0 :(得分:0)

您可能需要像这样将它们放在多行上。

%cd megatools-1.10.3/ 
! ./configure 
! make
! make install

答案 1 :(得分:0)

我找到了。是:

%cd megatools-1.10.3

!./ configure make sudo make install