Created
March 7, 2015 06:56
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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