gresiblos

Installation

Download and Installation

gresiblos 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 gresiblos for Python

The current version is gresiblos-0.8.0.

You have different options for installing gresiblos.

Installing the package from PyPi

You may install gresiblos using

python -m pip install gresiblos

You may consider building a virtual environment, first.

You may then run gresiblos using

gresiblos

Cloning the repository

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

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

You may then run gresiblos using

python gresiblos/gresiblos.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 gresiblos-0.8.0 will be generated. gresiblos.py is stored in the gresiblos folder.

You may run gresiblos using

python gresiblos/gresiblos.py

Installing add-ons

gresiblos currently supports two add-ons that are not part of the standard installation: markdown, and degrotesque.

Installing markdown

markdown is a text markup language for generating HTML, see https://python-markdown.github.io/. Install markdown using:

python -m pip install markdown

Installing degrotesque

degrotesque is a text processor which replaces basic characters by some nicer, typographic, counterparts, see https://degrotesque.readthedocs.io/en/latest/. Install degrotesque using:

python -m pip install degrotesque

Installing Python

Python is an interpreted programming language. For running gresiblos 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