Skip to content

2023

#164: Visualise Data With Matplotlib

The more complex the data, the more helpful a good visual representation is. Python offers us such a wide range of tools to visualise our data that it is difficult to make a choice. Therefore, we will look at a few different approaches to data visualisation in the coming months to use the right tool for our use cases.

#159: Find the Missing C++ Build Tools

On a freshly installed computer, I got this error message when I installed a package with pip:

error: Microsoft Visual C++ 14.0 or greater is required. Get it with "Microsoft C++ Build Tools": https://visualstudio.microsoft.com/visual-cpp-build-tools/

This error shows up because pip needs to compile a few files as part of the installation, but there are no C++ build tools installed. Let us figure out how we can fix this problem.