Running code cells sequentially in google colab
问题 I want to run the code cells in Google Colab in sequence. For example: Cell[1] from catboost import CatBoostRegressor #do something here Cell[2] clf = CatBoostRegressor(task_type='GPU') #do some more things here But when I select "Run all" all cells seem to run in parallel, so my code does not work. When I do the same thing in a Kaggle Kernel it runs perfectly i.e, first cell[1] is executed, and then cell[2] and so on. I have tried searching for this in Google Colab but failed to come up with