Skip to content

Installation

Keiron O'Shea edited this page Sep 5, 2017 · 4 revisions

There are a number of ways to download and install dimedbpy.

Easy-mode: python-pip

The fastest and by far easiest way of installing dimedbpy is through pip. pip is a "package management system used to install and manage software packages written in Python".

First of all, install pip as follows:

sudo apt-get install python-pip

Once that has completed, install dimedbpy using pip by using the following command:

pip install dimedbpy

So you think you're tough enough: Installation from the repository

It's possible to clone the latest development version of dimedbpy from GitHub, and install it manually from there. This version may not be 100% stable, but will include new features that have yet to be released.

git clone https://www.github.com/KeironO/dimedbpy
cd dimedbpy
python setup.py install

Once this process has completed, you should now be able to use dimedbpy freely.

Clone this wiki locally