Skip to content
This repository was archived by the owner on Feb 22, 2024. It is now read-only.

Latest commit

 

History

History
21 lines (14 loc) · 596 Bytes

install.rst

File metadata and controls

21 lines (14 loc) · 596 Bytes

Installation

This project requires pip, libvirt and guestfish installed on your system:

$ sudo apt-get install --no-install-recommends guestfish libvirt-daemon-system python3-libvirt python3-pip
$ sudo systemctl enable --now libvirtd
$ sudo usermod -aG kvm $USER
$ sudo usermod -aG libvirt $USER

Note: libvirt must have volume and Qemu metadata support.

Install it in a virtualenv:

$ python3 -m venv --system-site-packages .venv
$ source .venv/bin/activate
$ python3 setup.py install