A software for backing up save files of computer games.
- Install Python
- Install pip
- Install Virtualenv with pip:
pip install virtualenv
- Retrieve the source code from GitHub
- Change into the project directory (where this README.md file is located)
- Create a virtual environment for Python:
virtualenv .venv
- Activate the virtual environment
- Linux:
source .venv/bin/activate- Windows:
.venv\Scripts\activate - Install the project requirements with pip:
pip install -r requirements.txt
- Deactivate the virtual environment:
deactivate