In addition to the basic PyQt setup we've been using throughout the book, you will need to install PyQt support for the QtCharts library. This support is not part of the default PyQt install, but it can be easily installed from PyPI, as follows:
$ pip install --user PyQtChart
You'll also need the psutil library, which can be installed from PyPI. We already used this library in Chapter 12, Creating 2D Graphics with QPainter, so if you have been through that chapter, then you should already have it. If not, it can be easily installed using the following command:
$ pip install --user psutil
Finally, you may want to download the example code for this chapter from https://github.com/PacktPublishing/Mastering-GUI-Programming-with-Python/tree/master/Chapter14.
Check out the following video to see the code in action: http://bit.ly/2M5y67f
...