PyBoy v1.1.0 is released. Game Boy emulator written in Python.
PyBoy Changelog:
Fixed Tile image (#118)
Installation
The instructions are simple, if you already have a functioning Python environment on your machine.
Install SDL2 through your package manager:
Ubuntu: sudo apt install libsdl2-dev
Fedora: sudo dnf install SDL2-devel
macOS: brew install sdl2
Install PyBoy using pip install pyboy (add --user if your system asks)
Now you're ready! Either use PyBoy directly from the terminal $ pyboy file.rom or use it in your Python scripts:
from pyboy import PyBoy
pyboy = PyBoy('ROMs/gamerom.gb')
while not pyboy.tick():
pass
Download: PyBoy v1.1.0
Source:Here
2020-05-16
Tags:
Console,
GB,
Official_Build,
PyBoy
Random Related Topic
0 Comments
Post a Comment