Posts

Showing posts from December, 2024

Code the Classics - Volume II - macOS Guide

Image
  A few weeks ago, I was lucky enough to be gifted a physical copy of  Code the Classics – Volume II  published by Raspberry PI Press. I had originally purchased the e-version via  Humble Bundle  but struggled to get any of the code to run, going to say it was due to “e-book fatigue”. I’ve put the below steps together to help anyone wanting to get the games up and running quickly. Installing Python 3.12.2 Download Python 3.12.2 Double click the installer and follow the on-screen instructions. Once installed run the below from the Terminal which python3 You should get the below result /Library/Frameworks/Python.framework/Versions/3.12/bin/python3 Installing pip3 pip3 is automatically installed with Python3 (3.12.2), I would recommend checking if there is a newer version. The below is all run via Terminal pip3 install – upgrade pip pip3 --version You should get the below result pip 24.3 .1 from / Library / Frameworks / Python . framework / Versions / ...