Install Python from source
In the previous posts of this series we have used installers that are platform specific so we don’t need to go through the process of compiling Python. In this post we will explore how to build pyt...
In the previous posts of this series we have used installers that are platform specific so we don’t need to go through the process of compiling Python. In this post we will explore how to build pyt...
HomeBrew is a popular Linux/MacOS package installer. We will use it to install python. MacOS TLDR Download and install homebrew and install python /bin/bash -c "$(curl -fsSL https://raw.githubus...
Python is a very popular scripting language, according to StackOverflow 2023 survey it is the third most commonly used language and the fourth in the ranking for professional developers. All in all...
Prime numbers are the building blocks of arithmetics. In this short post we will investigate some attributes of prime numbers and how to work with them in a computer. One of the main applications ...