summaryrefslogtreecommitdiff
path: root/INSTALL.md
diff options
context:
space:
mode:
authorMario Trangoni <mjtrangoni@gmail.com>2016-12-26 11:46:58 +0100
committerCole Robinson <crobinso@redhat.com>2017-02-16 19:01:42 -0500
commitaa7d9c4593297256c5c8d34b9fd0506922191447 (patch)
tree4714d4426a31e0444b6b9eb3448907077cb8c6d9 /INSTALL.md
parent9a451e6faa634e7760f609cdf8feecb3106f2f6e (diff)
downloadvirt-manager-aa7d9c4593297256c5c8d34b9fd0506922191447.tar.gz
INSTALL: convert to Markdown format.
Diffstat (limited to 'INSTALL.md')
-rw-r--r--INSTALL.md42
1 files changed, 42 insertions, 0 deletions
diff --git a/INSTALL.md b/INSTALL.md
new file mode 100644
index 00000000..a34ca779
--- /dev/null
+++ b/INSTALL.md
@@ -0,0 +1,42 @@
+# Basic Install
+
+For starters, if you just want to run `virt-manager/virt-install` to test out
+changes, it can be done from the source directory:
+```sh
+./virt-manager
+```
+
+To install the software into `/usr/local` (usually), you can do:
+```sh
+python setup.py install
+```
+
+To build an RPM, you can run:
+```sh
+python setup.py rpm
+```
+
+`setup.py` generally has all the build and install commands, for more info see:
+
+ - `python setup.py --help-commands`
+ - `python setup.py install --help`
+ - [Python Standard Build and Install](https://docs.python.org/2/install/#standard-build-and-install)
+
+
+## Pre-requisite software
+
+A detailed dependency list can be found in
+[virt-manager.spec.in](virt-manager.spec.in) file.
+
+Minimum version requirements of major components:
+
+ - python >= 2.7
+ - gtk3 >= 3.14
+ - libvirt-python >= 0.6.0
+ - pygobject3 >= 3.14
+ - libosinfo >= 0.2.10
+
+On Debian or Ubuntu based distributions, you need to install the
+`gobject-introspection` bindings for some depedencies like `libvirt-glib`
+and `libosinfo`. Look for package names that start with `'gir'`, for example
+`gir1.2-libosinfo-1.0`.