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

The current version is gresiblos-0.6.0.

You may install gresiblos using

python -m pip install gresiblos

You may download a copy or fork the code at gresiblos's github page.

Besides, you may download the current release here:

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