Evel_Space / utils.py
fractalneuron's picture
Duplicate from Evel/Evel_Space
2e7f923
raw
history blame contribute delete
112 Bytes
def is_google_colab():
try:
import google.colab
return True
except:
return False