Skip to content

Installation

Evgeny edited this page Jun 20, 2022 · 6 revisions

Requirements

Python 3.8+ with package venv. If venv is missing, try to search for python-venv via your system package manager and install it, else search on Google how to install it in your system.

Virtual environment

Follow next commands to setup the repository generator:

# create the virtual environment
python -m venv env

# activate the virtual environment
source env/bin/activate

# install required packages
pip install -r requirements.txt
Clone this wiki locally