In google Colab, I cloned a github project. Then I executed some bash commands. There is a notebook folder inside this project containing several notebooks. Already, I converted them to python files and tried to run them using
!ipython3 file.py
It gives me some error on visual parts like:
nknownBackendTraceback (most recent call last)
/content/notebooks/ml.py in <module>()
13 get_ipython().magic(u'reload_ext autoreload')
14 get_ipython().magic(u'autoreload 2')
---> 15 get_ipython().magic(u'matplotlib inline')
I either must resolve this errors, or load and run the ipython notebook in Google Colab. Could I do that?