abjer / isds2020

Introduction to Social Data Science 2020 - a summer school course abjer.github.io/isds2020
58 stars 92 forks source link

youtube video not running in jupyter notebook #3

Open carolinamariotto opened 4 years ago

carolinamariotto commented 4 years ago

Hi! For some reason, none of the youtube videos in assignment 0 are running in Jupyter notebook for me. Is there something I can do to fix it?

jsr-p commented 4 years ago

What output are you getting when trying to run the videos? Can you copy and paste the output here or send a screenshot?

carolinamariotto commented 4 years ago

NameError Traceback (most recent call last)

in ----> 1 YouTubeVideo('wEjO-0rx0c0', width=640, height=360) NameError: name 'YouTubeVideo' is not defined
jsr-p commented 4 years ago

The problem is that you haven't defined "YouTubeVideo".

At the top of the notebook (right underneath the subheading "First things first") there is a cell that defines "YouYubeVideo" with the following import statement: from IPython.display import YouTubeVideo

You will have to run this cell as the first thing before you can watch the YouTube videos in the notebook. Try to run this cell and then open the YouTube video :)

carolinamariotto commented 4 years ago

thank you! now it works :)