Skip to content

Latest commit

 

History

History
53 lines (33 loc) · 1.13 KB

README.md

File metadata and controls

53 lines (33 loc) · 1.13 KB

Learning Python - Roguelike Game

This is sample implementation of a 'roguelike' game in Python.

Game menu:

Main menu)]

Gameplay:

Gameplay

This project is using venv (virtual environment) to manage dependencies.

To install dependencies run:

Linux/MacOS:

python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt

Windows:

py -m venv .venv
.venv\Scripts\activate
pip install -r requirements.txt

To save dependencies (if you want to change them) run:

pip freeze > requirements.txt

To start the game run (be sure to activate venv)):

python main.py

Learning Resources

Based on Roguelike Python Tutorial 📁.

All cudos to TStand90 for the great tutorial!

Original code can be found here.

You might want to check Roguelike Development Subreddit.