Perroquet
Listening comprehension tutorDocumentation - Developement
Perroquet is developed with python, it use GTK (with pyGTK) for the GUI and Gstreamer as media player
Build from sources
Download and run
First, download the last development version on launchpad with bazaar:
bzr branch lp:perroquet
You can directly run perroquet without any build or install:
cd perroquet ./perroquet
Build locales
Without built, perroquet will be in english. Without install, the best integration with your system will not be available: no icon, no entry in menu, no handle on *.perroquet.
You can build others languages easily:
python setup.py build
The language files should now be build. If you run Perroquet again and if your system language is one of translation language, the text in Perroquet will be translated.
Install
To install perroquet, type with root rigths:
python setup.py install --record=install-files.txt
or with sudo
sudo python setup.py install --record=install-files.txt
The install-files.txt file is optionnal. It is needed to uninstall Perroquet.
Once installed, you should be able to launch Perroquet from anywhere:
cd perroquet
Uninstall
To uninstall perroquet, type with root rigths:
python setup.py uninstall --manifest=install-files.txt
or with sudo
sudo python setup.py uninstall --manifest=install-files.txt