installation
cloning through git (more difficult, easier to update, recommended)
The game has been designed in python, so we'll need to get that. Additionally, before you can get the game you will need some dependencies, we use the python package Pillow so that we can load in maps (which are images), and pygame to render the graphics for the client. If you work with computers often this may be enough information for you, otherwise continue following the instructions.
- windows
- preparing
- you can get the newest version of python from here:
https://www.python.org/downloads/
- once you have python, you can install both of the dependencies like this:
py -m pip install -U pygame Pillow --user
this will install globally
- getting the game
- install git bash
- launch it and then type
cd ~/Desktop
- now clone the repository,
git clone https://gitlab.com/cuppajoeman/frag-x.git
- to run the game simply run
py client.py
- mac
- preparing, follow windows instructions but instead of typing
py
type python
- getting the game
- install git there are instructions here
- once git is installed you can clone the repository:
git clone https://github.com/frag-x/frag-x.git
- to run the game simply run
python client.py
- linux
- install python and the two python packages Pillow and pygame, clone https://gitlab.com/cuppajoeman/frag-x.git and run client.py