Search code examples
google-colaboratory

Can't run a code that includes "./" in google colab


I'm new to colab, and I can't seem to find how to run this code in colab, the original code is:

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

and all I have so far is:

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

Can you please help me? Thanks.


Solution

  • I found it. It's:

    %cd megatools-1.10.3

    !./configure make sudo make install