From f1b011906ca25675224b2edb98fdd915248022ed Mon Sep 17 00:00:00 2001 From: flaviamedici Date: Thu, 7 May 2026 14:03:05 -0700 Subject: [PATCH 1/3] Updating README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 38f66266..d6f5d3a7 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,8 @@ This is inspired by Meth-Meth-Method's [super mario game](https://github.com/met ## Running +* $ py -m venv venv +* .\venv\Scripts\Activate.ps1 * $ pip install -r requirements.txt * $ python main.py From 09920ef661fcaf1a28d1677312447dd799b67378 Mon Sep 17 00:00:00 2001 From: flaviamedici Date: Fri, 8 May 2026 16:27:23 -0700 Subject: [PATCH 2/3] Adding some workaround steps for python 3.12 --- README.md | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index d6f5d3a7..73b6542d 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,23 @@ This is inspired by Meth-Meth-Method's [super mario game](https://github.com/met ## Running * $ py -m venv venv -* .\venv\Scripts\Activate.ps1 +* $ .\venv\Scripts\Activate.ps1 +* $ pip install -r requirements.txt +* $ python main.py + +## Workaround for Python 3.12 + +* $ Install Microsoft C++ Build Tools, as they are necessary to compile certain Python packages. +During installation, include the following components: +- MSVC v142 - VS 2019 C++ x64/x86 build tools +- Windows 10 SDK +- C++ CMake tools for Windows +- C++ ATL for v142 build tools (x86 & x64) +* $ pip install --upgrade setuptools +* $ pip install pygame +* $ pip install scipy +* $ py -m venv venv +* $ .\venv\Scripts\Activate.ps1 * $ pip install -r requirements.txt * $ python main.py From aa20deb38e5483ea7e12a84fa53455369e078378 Mon Sep 17 00:00:00 2001 From: Flavia Medici <10454495+flaviamedici@users.noreply.github.com> Date: Fri, 8 May 2026 20:16:59 -0700 Subject: [PATCH 3/3] Update README with installation components formatting Formatted the list of required components for Python 3.12 installation. --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 73b6542d..84c4acd3 100644 --- a/README.md +++ b/README.md @@ -13,10 +13,10 @@ This is inspired by Meth-Meth-Method's [super mario game](https://github.com/met * $ Install Microsoft C++ Build Tools, as they are necessary to compile certain Python packages. During installation, include the following components: -- MSVC v142 - VS 2019 C++ x64/x86 build tools -- Windows 10 SDK -- C++ CMake tools for Windows -- C++ ATL for v142 build tools (x86 & x64) +MSVC v142 - VS 2019 C++ x64/x86 build tools +Windows 10 SDK +C++ CMake tools for Windows +C++ ATL for v142 build tools (x86 & x64) * $ pip install --upgrade setuptools * $ pip install pygame * $ pip install scipy