Installing "odpdown" 0.4.1 on Xubuntu 12.04

Step-by-Step descriptions of how to do things.
Post Reply
User avatar
peter_b
Chatterbox
Posts: 370
Joined: Tue Nov 12, 2013 2:05 am

Installing "odpdown" 0.4.1 on Xubuntu 12.04

Post by peter_b »

HowTo install "odpdown" 0.4.1 on Xubuntu 12.04

1) Download it
Or pull it from the git repository:
https://github.com/thorstenb/odpdown/releases

2) Unpack it

3) Install the following dependencies:
(as root, or using sudo)

Code: Select all

$ apt-get install python-setuptools
$ pip install tox
$ pip install mistune
$ pip install lpod-python
4) Run the install script:
Change to the folder where you've unpacked/downloaded odpdown's source code and run this as root:

Code: Select all

$ python setup.py install
User avatar
peter_b
Chatterbox
Posts: 370
Joined: Tue Nov 12, 2013 2:05 am

Running tox tests

Post by peter_b »

For running the "tox" tests, you must install python headers:

Code: Select all

$ apt-get install python-dev
Then run the tests:

Code: Select all

$ sudo -H tox -v
Should end in:
py27: commands succeeded
flake8: commands succeeded
congratulations :)
Post Reply