2017-02-14 15:53:35 +00:00
|
|
|
# Software Installation
|
2017-02-17 16:15:28 +00:00
|
|
|
This 'make' resource requires a lot of additional library software. You will need to be connected to the internet to install these extra libraries.
|
2017-02-14 15:53:35 +00:00
|
|
|
|
|
|
|
|
To install the software you need, run the following commands in the terminal:
|
|
|
|
|
|
2017-02-17 16:15:28 +00:00
|
|
|
```bash
|
|
|
|
|
sudo apt-get install python3-picamera python3-pip
|
|
|
|
|
sudo pip3 install guizero
|
|
|
|
|
sudo pip3 install twython
|
|
|
|
|
sudo apt-get install python-PIL
|
|
|
|
|
```
|
|
|
|
|
|
2017-03-16 10:16:08 +00:00
|
|
|
This will install the necessary software to control the PiCamera, create a GUI, tweet and manipulate images.
|
|
|
|
|
|
2017-02-17 16:15:28 +00:00
|
|
|
If you are using the Raspberry Pi touch screen to make this resource, you will also need to enter the following commands:
|
|
|
|
|
|
2017-02-14 15:53:35 +00:00
|
|
|
```bash
|
2017-02-17 15:39:43 +00:00
|
|
|
sudo apt-get update
|
|
|
|
|
sudo apt-get upgrade
|
|
|
|
|
sudo apt-get dist-upgrade
|
|
|
|
|
sudo apt-get install raspberrypi-ui-mods
|
|
|
|
|
sudo apt-get install raspberrypi-net-mods
|
2017-02-14 15:53:35 +00:00
|
|
|
```
|