How to run a Python script in a '.py' file from a Google Colab notebook?

前端 未结 6 2120
星月不相逢
星月不相逢 2021-01-31 17:14
%%javascript
IPython.OutputArea.prototype._should_scroll = function(lines) {
    return false;
}

%run rl_base.py

I run this giving error saying rl_bas

6条回答
  •  遇见更好的自我
    2021-01-31 17:31

    If you have the test.py file in the corresponding folder in drive as in the below attached image, then the command which you use to run the test.py file is as mentioned below,

    !python gdrive/My\ Drive/Colab\ Notebooks/object_detection_demo-master/test.py
    

    Additional Info:

    If you jusst want to run !python test.py then you should change directory, by the following command before it,

    %cd gdrive/My\ Drive/Colab\ Notebooks/object_detection_demo-master/
    

提交回复
热议问题