Last active
December 23, 2015 15:19
-
-
Save DerekK19/6654618 to your computer and use it in GitHub Desktop.
Raspberry Pi development
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
# List installed packages | |
dpkg --get-selections | |
# List the files in a package (e.g php5-gd) | |
dpkg -L php5-gd | |
# Update installed packages | |
sudo apt-get update | |
# Set up to use Gertboard | |
sudo apt-get install python-dev python-pip | |
sudo pip install wiringpi | |
# Get Gertboard tutorial python programs | |
wget http://raspi.tv/download/GB_Python.zip | |
unzip GB_Python.zip |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment