I am trying to learn tensor flow's CNN using tflearn. I am able to get my MNIST dataset compiled and model trained in spyder python on my computer however when i try to do the same on google colab i get an error
---------------------------------------------------------------------------
ModuleNotFoundError Traceback (most recent call last)
<ipython-input-3-9d7ed441cee1> in <module>()
----> 1 import tflearn
2 frames
/usr/local/lib/python3.6/dist-packages/tflearn/variables.py in <module>()
5 import tflearn
6
----> 7 from tensorflow.contrib.framework.python.ops import add_arg_scope as contrib_add_arg_scope
8 from tensorflow.python.framework import ops
9 from tensorflow.python.ops import variable_scope
ModuleNotFoundError: No module named 'tensorflow.contrib'
---------------------------------------------------------------------------
NOTE: If your import is failing due to a missing package, you can
manually install dependencies using either !pip or !apt.
To view examples of installing some common dependencies, click the
"Open Examples" button below.
---------------------------------------------------------------------------