A procedurally generated bullet-hell dungeon crawler made in Python using Arcade.
The preferred and easiest way to play Hades is by using the pre-compiled releases on GitHub. To play the game this way, follow these steps:
- Download and extract the latest release from here.
- Run the
window.exefile to play the game.
Another way to play Hades is by cloning the repository and running it locally. To play the game this way, follow these steps:
- Clone the repository using
git clone https://github.com/JackAshwell11/Hades.git. - Ensure uv is installed.
- Run
uv venvanduv syncto install the dependencies needed to run the game. This will create a virtual environment in thehades/.venvdirectory. - Run the command
uv run python src/hades/window.pyto play the game.
While this way is more convoluted and unstable, it will allow you to access the latest version of the game with the newest features.
You can also compile the game locally if you choose. To do so, follow these steps:
- Clone the repository using
git clone https://github.com/JackAshwell11/Hades.git. - Ensure uv is installed.
- Run
uv venvanduv syncto install the dependencies needed to run the game. This will create a virtual environment in thehades/.venvdirectory.
See here for more details.