2021年3月2日 星期二

[ Python 常見問題 ] Jupyter - Trying to display youtube video in jupyter notebook

 Source From Here

Question
I'm trying to display a youtube video in Jupyter notebook.

Solution
Try this trick and let me know:
  1. from IPython.display import YouTubeVideo  
  2.   
  3. YouTubeVideo('WSbgixdC9g8', width=800, height=300)  


沒有留言:

張貼留言

[Git 常見問題] error: The following untracked working tree files would be overwritten by merge

  Source From  Here 方案1: // x -----删除忽略文件已经对 git 来说不识别的文件 // d -----删除未被添加到 git 的路径中的文件 // f -----强制运行 #   git clean -d -fx 方案2: 今天在服务器上  gi...