Reputation: 63
I get an error when I try to import the util library in google colab. How can I fix it?
I tried :
!pip install utils
and
from util import *
but doesn't work.
Upvotes: 1
Views: 11138
Reputation: 2226
You missed an 's' in utils
!pip install utils
from utils import *
Upvotes: 2