-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile
27 lines (23 loc) · 885 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#/*****************************************************************/
#/* University of Nebraska-Lincoln */
#/* Department of Electrical Engineering */
#/* G78 Senior Design Project */
#/* and */
#/* Keith "Has joined the chaos" Murray */
#/* featuring */
#/* Magic Code */
#/*****************************************************************/
all:
sudo apt-get update
sudo apt-get install python-dev
sudo apt-get install python-pip
sudo apt-get install python-serial
sudo apt-get install python-rpi.gpio python3-rpi.gpio
sudo apt-get install python-picamera
sudo pip install pillow
sudo reboot
clean:
sudo apt-get remove python-rpi.gpio python3-rpi.gpio
sudo pip uninstall serial
sudo apt-get remove python-picamera
sudo pip uninstall pillow