Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,24 @@ 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

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

Expand Down