Widget not getting created

In Lesson 1 , when running the following code:

uploader = widgets.FileUpload()
uploader

I am getting the error “name ‘widgets’ is not defined”. Any idea why?

1 Like

Ok never mind, I forgot to run the first line “from utils import *”

2 Likes

I ran into the same issue, and fixed it by adding the line
from fastbook import *

6 Likes