EBOOLEAN
EBOOLEAN

Reputation: 63

No module named 'util' in Colab

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

Answers (1)

bherbruck
bherbruck

Reputation: 2226

You missed an 's' in utils

!pip install utils
from utils import *

Upvotes: 2

Related Questions