Nic0 / tyrs

Twitter and Identica client using curses
http://tyrs.nicosphere.net
61 stars 10 forks source link

Update Ubuntu installation docs #94

Closed davidosomething closed 7 years ago

davidosomething commented 12 years ago

Either of the following works on 11.04:

get all python dependencies

sudo aptitude install python python-setuptools python-distutils-extra python-oauth2 python-twitter

build executable

python setup.py build

It works at this point using the executable ./tyrs

ALTERNATIVELY after python setup.py build:

create python folder since it may not exist and will fail in that case

sudo mkdir -p /usr/lib/python2.7/site-packages

install fetches the dependencies online

sudo python setup.py install

Nic0 commented 12 years ago

Thanks, and I'm sorry that I didn't had time to check this, hopefully I could check the ubuntu installation before the week end.

About this: sudo mkdir -p /usr/lib/python2.7/site-packages I'm think I remember it was different on Debian/Ubuntu, and was dist-packages, need to check, site-packages was specific for Arch Linux. I'm not sure but I need to check.

Thanks for this, I'll update the doc as soon as possible.