Skip to content

Blog

#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.

#152: Playwright for Python

Over the last few weeks, I experimented with Playwright and wrote a few posts on how to work with it from C#. Because I got so many comments about Playwright whenever I blog about Selenium, I go for a slightly shorter set of posts that cover Playwright for Python users. The obstacles I run into in C# may happen to you in Python too.