If you enjoy listening to Pandora but hate the Web app. Then you might like
Pithos. This is a launchpad project by Kevin Mehall- and he has written a nifty little python program. He has provided a .deb package but I did not find a .rpm (may be I have not searched hard!)
However the building and installng the package as described
here works on F14 with the following modifications.
Code:
$ su
#yum install python pyxdg pygobject2 gstreamer-python notify-python gtk2-python dbus-python gstreamer-plugins-good gstreamer-plugins-bad python-distutils-extra
Then,
Code:
cd ~/Download
bzr branch lp:pithos pithos
cd pithos
sudo python setup.py install --prefix=/usr
First I tried /usr/local/ as described in Kevin's page. But due to a bug I was ending up with
Code:
ImportError: no module named pithos
This is due to "/usr/local/lib/python2.7/site-packages" not being in the PYTHONPATH. If you would like to run setup.py with --prefix=/usr/local then add
Code:
sys.path.append("/usr/local/lib/python2.7/site-packages/")
at line 21 of /usr/local/bin/pithos. You can also achive the same effect by adding
Code:
export PYTHONPATH="/usr/local/lib/python2.7/site-packages:$PYTHONPATH"
in your .bashrc file.