Reputation: 1161
I want to use sklearn_theano
package in Google colab.
However, I simply do that :
import sklearn_theano
and get
ModuleNotFoundError: No module named 'sklearn_theano'
How to make the library available ??
Upvotes: 0
Views: 2941
Reputation: 38694
Here's an example notebook demonstrating the install:
https://colab.research.google.com/drive/1gYny47qg3I3iiI-i5oMKuu4ZSsIzUiIJ
It mirrors the published installation instructions.
Upvotes: 2
Reputation: 1145
!pip install -q library
where library is what you want to install.
Upvotes: 0