-
Notifications
You must be signed in to change notification settings - Fork 1
Installing software and configuring raspberry pi
Ramviyas Parasuraman edited this page Feb 5, 2021
·
1 revision
** Installing Software and Configuring Raspberry Pi **
You need a memory card with at least 8GB capacity for this installation. Follow the instructions here on this page .
Note You need 'Raspbian Buster Lite' version. Download Here
After burning the OS on the Micro SD card, you should create three text files
- wpa_supplicant.conf - wifi settings
- config.txt - global system settings
- ssh - an empty text file to enable ssh
The details for creating those files can be found here.
Note: Use the 2G wifi settings from the lab for wpa_supplicant.conf
After everything is done ssh to your raspberry pi.
password: raspberry (default)
Execute the following commands. (You may not need sudo more than once).
These are the packages we will be using for programming the robot.
sudo apt-get update
sudo apt-get upgrade
sudo apt-get install python3
sudo apt install python3-pip
sudo apt-get install git
sudo pip3 install numpy
If required, do install these packages
sudo pip3 install getch
sudo pip3 install RPi.GPIO