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?
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?
Ok never mind, I forgot to run the first line “from utils import *”
I ran into the same issue, and fixed it by adding the line
from fastbook import *