Python

Definitely there will be more than one article on this subject. When I wrote this description (January 4th, 2024) there was only one python article posted. I love Python and I dedicated a lot of time and effort learning Python. I wrote especially small projects for my Ham Radio hobby, but I also have some others, on more exotic topics like Data Mining, optimization etc (genetic algorithms etc).

Genetic algorithm mutation coded in Python

This example is adapted from Clinton Sheppard’s excellent book “Genetic Algorithms with Python“, a book that I encourage you to buy and read. The very simple example shows how easy is to design in Python a simple mutation algorithm that merges to the optimal solution in 24 iterations. The example below uses romanian language accents […]

How to install Python 3.7 on Raspberry Pi

This short guide explains how to install Python version 3.7.0 on a Raspberry Pi running Raspbian. First, get rid of old versions: Ensure system is up to date: Install the dependencies needed for building the distribution: build-essential tk-dev libncurses5-dev libncursesw5-dev libreadline6-dev libdb5.3-dev libgdbm-dev libsqlite3-dev libssl-dev libbz2-dev libexpat1-dev liblzma-dev zlib1g-dev libffi-dev Get the python src distribution: […]