K N Dheeraj
K N Dheeraj
I am not much well-versed with using magic functions. Can you provide me the code run magic function from cloned GitHub project?
Can you try to replace Jupyter with IPython as maybe colab doesn't support Jupyter and instead uses IPython def run_all_below(): js = 'IPython.notebook.select_next().execute_cells_below()' display(Javascript(js))
1. For the first I couldn't find any so dropped a StackOverflow Request: https://stackoverflow.com/questions/66786245/what-is-the-equivalent-to-jupyter-notebook-select-next-execute-cells-below-i 2. This did the trick: ```py if 'google.colab' in str(get_ipython()): print('Running on CoLab') else: print('Not running...
@saraswathykrk I couldn't resolve this issue. As we were not able to find an equivalent function for execute_cells_below that is supported in Google Colab. StackOverflow for the same was provided....