Skip to main content

Installation

Prérequis

Python3, sous Windows, Linux ou Mac. et pip

Sous Debian:

apt install python3 python3-venv

Mise en place

python3 -m venv gogrepo
cd gogrepo/
source bin/activate
pip3 install html2text html5lib
wget https://raw.githubusercontent.com/eddie3/gogrepo/master/gogrepo.py

Bugs connus

en-tête ligne 1

remplacer

#!/usr/bin/env python

par

#!/usr/bin/env python3

pour utiliser la version installée de python.

Sous Windows, à la ligne 257

remplacer

with codecs.open(MANIFEST_FILENAME, 'rU', 'utf-8') as r:

par

with codecs.open(MANIFEST_FILENAME, 'r', 'utf-8') as r:

Car l'argument U n'est pas reconnu.