pascalw / Airplayer

Python script to make media playing software Apple Airplay compatbible. Currently supports XBMC, Plex and Boxee.

Home Page:http://pwiddershoven.nl/blog/2011/01/05/airplayer.html

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Python2.6 on AppleTV (1) Crystalbuntu image

dannyzumwalt opened this issue · comments

I can't find how to install python 2.6 on the famous (?) pin78a or Sam image (from xbmc.org forums) for Ubuntu Hardy 8.04 on Apple TV 1. This runs xbmc live on this ubuntu, but the latest available python is 2.5.2

//
xbmc@atvlinux01:$ sudo apt-get install python
Reading package lists... Done
Building dependency tree
Reading state information... Done
python is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 49 not upgraded.
xbmc@atvlinux01:
$ python --version
Python 2.5.2
//

I had been using AirPlayer great until I updated not knowing the issue of requiring python2.6 and now airplayer does not work (iOS devices do not see my atv1 anymore).

Figured it out -- had to add new apt-get source for python2.6
perhaps others out there will benefit if thsi is mentioned in the install file?

#Add to /etc/apt/sources.list using vi or other editor

deb http://ppa.launchpad.net/python-dev/ppa/ubuntu hardy main
deb-src http://ppa.launchpad.net/python-dev/ppa/ubuntu hardy main

#Import the pub key
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys D81367B9

#Install python2.6
sudo apt-get update
sudo apt-get install python2.6