1 00:00:01,320 --> 00:00:02,280 - [Instructor] Throughout these videos 2 00:00:02,280 --> 00:00:05,240 we'll present several dynamic animations 3 00:00:05,240 --> 00:00:08,870 that you can execute either with the iPython interpreter, 4 00:00:08,870 --> 00:00:12,740 or once again in the context of Jupyter Notebooks. 5 00:00:12,740 --> 00:00:15,420 Now to get those animations to work correctly 6 00:00:15,420 --> 00:00:19,660 in the context of Jupyter, you'll need to install a package 7 00:00:19,660 --> 00:00:22,580 called jupyter-matplotlib. 8 00:00:22,580 --> 00:00:27,520 Matplotlib is a graphics visualization package 9 00:00:27,520 --> 00:00:29,980 that is going to enable you to create 10 00:00:29,980 --> 00:00:33,560 some very impressive graphics with minimal amounts of code. 11 00:00:33,560 --> 00:00:36,350 We'll also be taking advantage of another library 12 00:00:36,350 --> 00:00:40,460 that's built on top of matplotlib called Seaborn, 13 00:00:40,460 --> 00:00:43,340 and in order to use either of those two 14 00:00:43,340 --> 00:00:47,960 in the context of Jupyter for these dynamic animations, 15 00:00:47,960 --> 00:00:50,370 we will need this package first. 16 00:00:50,370 --> 00:00:53,902 So to do that, you're going to have to install, 17 00:00:53,902 --> 00:00:58,389 by its package name, which is actually ipympl. 18 00:00:58,389 --> 00:01:00,660 So these are the commands 19 00:01:00,660 --> 00:01:03,560 that you'll need to execute for that purpose, 20 00:01:03,560 --> 00:01:07,200 and you'll need to execute these commands one at a time. 21 00:01:07,200 --> 00:01:11,010 So what you should do at this point is pause the video, 22 00:01:11,010 --> 00:01:13,470 and go ahead and open up a command line 23 00:01:13,470 --> 00:01:17,130 like we showed you earlier in this Before You Begin lesson, 24 00:01:17,130 --> 00:01:19,720 and then one at a time execute each 25 00:01:19,720 --> 00:01:23,060 of the four different commands that you see here. 26 00:01:23,060 --> 00:01:25,440 When you're done with all of those installations, 27 00:01:25,440 --> 00:01:27,403 go ahead and restart the video.