grebakker

Installation

Download and Installation

grebakker is a Python script. To run it, you must have Python installed. If you have not installed Python, yet, please read instructions on installing Python first (see below).

Installing grebakker for Python

The current version is grebakker-0.2.0.

You have different options for installing grebakker.

Installing the package from PyPi

You may install grebakker using

python -m pip install grebakker

You may consider building a virtual environment, first.

You may then run grebakker using

grebakker

Cloning the repository

You may clone the repository which is available at grebakker's github page.

git clone https://github.com/dkrajzew/grebakker.git
cd grebakker

You may then run grebakker using

python grebakker/grebakker.py

Download the latest release

Besides, you may download the current release here:

You will get the complete copy of the repository which you have to decompress. A folder named grebakker-0.2.0 will be generated. grebakker.py is stored in the grebakker folder.

You may run grebakker using

python grebakker/grebakker.py

Installing Python

Python is an interpreted programming language. For running grebakker and other scripts written in Python you have to install Python itself, first.

For installing Python, use an installer for your system from https://www.python.org.

You should as well install pip, a package manager for Python. After installing Python, you should be able to install pip using:

python get-pip.py

You may upgrade pip using:

pip install --upgrade pip