Vorx is an engine for creating 2D games, written on Python. It is built on top of the SDL2 library.
Currently there are no releases. All code for Dev builds is available here
If you are installing Vorx, get a stable build from Latest Release on github, if there are no releases, install directly from Git
For install you need dependencies:
If you installing Vorx from Git, you need a dependencies to build it from source:
- Python 3.8+
- Cython and setuptools
- Pip
- C Compiler:
- Windows: Microsoft Visual C++ Build Tools
- Linux: build-essential (gcc)
- Mac: Xcode Command Line Tools
For install stable builds from git, use the following command
git clone https://github.com/CodCatDev/Vorx.gitFor install dev builds from git, use the following command
git clone --branch dev https://github.com/CodCatDev/Vorx.gitIf you install from git, run this commands to build engine core:
cd Vorx
pip install -r requirements.txt
python buildManually.pyIf you install from releases, all be done!
Install a Sdl2 Libs
sudo apt-get update
sudo apt-get install libsdl2-2.0-0 libsdl2-devFor arch:
sudo pacman -S sdl2For Fedora/RHEL:
sudo dnf install SDL2-develAnd build engine core, with libs:
cd Vorx
pip3 install -r requirements.txt
python3 buildManually.pyInstall Homebrew
download SDL2-dev
brew install sdl2install all and build
cd Vorx
pip3 install -r requirements.txt
python3 buildManually.py