Test if notebook is running on Google Colab

后端 未结 4 1273
小蘑菇
小蘑菇 2021-01-07 19:47

How can I test if my notebook is running on Google Colab?

I need this test as obtaining / unzipping my training data is different if running on my laptop or on Colab

4条回答
  •  梦毁少年i
    2021-01-07 20:10

    Try importing google.colab

    try:
      import google.colab
      IN_COLAB = True
    except:
      IN_COLAB = False
    

    Or just check if it's in sys.modules

    import sys
    IN_COLAB = 'google.colab' in sys.modules
    

提交回复
热议问题