Skip to content

Installation

Evgeny edited this page Jun 18, 2022 · 6 revisions

Required Python version: 3.6+

I recommend to create a virtual environment and work from there.

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
python -m pip install -r requirements.txt

If venv is missing, try to search for python-venv via your package manager and install it, else search on Google.

Clone this wiki locally