Skip to content

Instantly share code, notes, and snippets.

@enricmcalvo
Created March 7, 2015 06:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save enricmcalvo/aa71776fa4cee68e234c to your computer and use it in GitHub Desktop.
Save enricmcalvo/aa71776fa4cee68e234c to your computer and use it in GitHub Desktop.
PipaOS fix for broken apt-get due to missing/broken python-rpi.gpio package
# Simple gist to fix pipaos issue that won't allow to install or update any package because of python-rpi.gpio missing (or broken)
wget http://sourceforge.net/projects/raspberry-gpio-python/files/raspbian-wheezy/python-rpi.gpio_0.5.11-1_armhf.deb
wget http://sourceforge.net/projects/raspberry-gpio-python/files/raspbian-wheezy/python3-rpi.gpio_0.5.11-1_armhf.deb
sudo dpkg -i python-rpi.gpio_0.5.11-1_armhf.deb
sudo apt-get update
sudo apt-get upgrade
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment