Skip to content
This repository has been archived by the owner on Nov 30, 2020. It is now read-only.

Installation

Nguyễn Gia Phong edited this page Apr 28, 2020 · 10 revisions

Python and pip

Brutal Maze should run on Python version 3.6 and above. If you're using an Unix-like operating system, you're likely to have Python installed on your computer. Otherwise, you can download it from python.org.

The game also uses multiple third-party libraries, which is recommended to be installed using pip. There is a detailed documentation about getting this package manager on pypa.io.

Install from PyPI

For convenience reasons, every release of Brutal Maze is uploaded to the Python Package Index. To either install or upgrade, open your terminal (on Windows: Command Prompt or PowerShell) and run:

pip install --user --upgrade brutalmaze

This requires the the user scheme scripts directory to be in your environmental variable $PATH.

Install from Github

If you want to tweak the game or contribute, clone the Github repository:

git clone https://github.com/McSinyx/brutalmaze.git --recursive

This will also clone the wiki submodules containing, well, ehm, this Wiki.

Then install it using pip, like so:

pip install --user brutalmaze/
Clone this wiki locally