项目作者: beepy0
项目描述 :
2D maze runner game played entirely in the command line (terminal)
高级语言: Python
项目地址: git://github.com/beepy0/console_mazerunner.git
Console Mazerunner

Solve the maze of the gray blade-runner-esque landscape.
Run around abandoned buildings, towers and tunnels and bring the music home.
- Runs entirely in the command line (terminal)
- Easy setup using pip
- Potential for new features and open-sourced for everybody
Setup
Base requirements
- Python 3.6+
- pip3
- Under Linux/OS X, you need to be root in order to use the required keyboard library
Install
- Open a terminal, navigate to the project folder
- if using Linux/OS X: enter root mode
sudo su
- Install the library dependencies via pip:
python -m pip install -r requirements.txt
. More info here
Run
Without an IDE
- Open a terminal, navigate to the project folder
- run
python3 main.py
Using PyCharm
~- Create a new Python project~
~- Automatically install packages via the requirements.txt file and the official instructions (Best use a virtualenvironment to separate library dependencies between projects)~
~- Start in a terminal window outside the IDE, Navigate to the project folder and run python3 main.py
~