Software Installation
You can download a ready-to-use ISO image containing the operating system (Raspberry Pi OS) along with all necessary libraries and Python code pre-installed here.
Follow the instructions on this page if you prefer a manual installation. The process can be challenging, so proceed only if you have a basic understanding of Linux distributions and are comfortable using the terminal.
What You Need
Raspberry Pi 5 - 8GB
Fan
Micro SD 128GB
Keyboard
Mouse
Screen
Micro HDMI to HDMI cable
Power supply for Raspberry Pi
2 Raspberry Pi Camera Module 3 Wide Noir
Ethernet cable (optional)
Raspberry Pi Dac Pro (optional)
2 servo motors
RFID sensor
Weight sensor
Temperature sensor
Launch Raspberry Pi OS for the First Time
Connect a keyboard, mouse, and screen to the Raspberry Pi.
Connect the Ethernet cable if you are going to use an Ethernet connection.
If your SD card has the OS preinstalled, jump to step 4.
If your SD card is empty, follow these instructions to download the OS and copy it to the SD: Raspberry Pi OS
Insert the SD card and start the Raspberry Pi.
Select your country and keyboard language and choose English as the general language.
Type
raspberry
as the username and choose the password you want.Select your Wi-Fi or Ethernet connection.
Choose your preferred web browser (Chromium).
Select “Yes” when asked to update software (if you have your internet connection ready).
Updating the System
Make sure you have internet connection and then update the software. Detailed instructions.
sudo apt update
sudo apt full-upgrade
Installing Needed Libraries
Install OpenCV (library to manage video):
sudo apt install -y python3-opencv
sudo apt install -y opencv-data
Install sound libraries: TODO check if pulseaudio is really needed.
sudo apt-get install pulseaudio
sudo apt-get install libportaudio2
Install PyQT5 multimedia
sudo apt install python3-pyqt5.qtmultimedia
sudo apt install libqt5multimedia5-plugins
Install VS Code (optional):
sudo apt install code
Creating a Python Environment and Installing pip Libraries
Create a
.env
environment that includes all the packages installed in the global Python environment:
python -m venv --system-site-packages ~/.env
Activate it:
source ~/.env/bin/activate
Install needed libraries with pip:
pip install python-dateutil
pip install setuptools_scm
pip install sounddevice
pip install python-telegram-bot
pip install scipy
Changing Preferences
Enable auto-login by clicking on
Preferences
->Raspberry Pi Configuration
->Auto login
.Add CPU monitors to the toolbar: Right-click on the toolbar, select
Add/Remove Panel Items
, and clickAdd
. SelectCPU Temperature Monitor
andCPU Usage monitor
.
Screen Settings
Run the
raspi-config
.
sudo raspi-config
Go to
Display Options
and disable blanking.Go to
Advanced Options
and select X11 (instead of Wayland).
Then, you need to configure the system to recognize a screen even if none is physically connected, so the software renders properly when accessed remotely. If you want to use an additional screen to present stimuli in the behavioral box, you need to set the system to work with two screens.
Modify the file:
/boot/firmware/cmdline.txt
sudo nano /boot/firmware/cmdline.txt
Add the following text:
vc4.fvc4.force_hotplug=1
if you are using only one screen, orvc4.fvc4.force_hotplug=3
if you are using two screens.
Explanation of values: (1 makes the system operate as if a screen is connected to HDMI 1). (2 makes the system operate as if a screen is connected to HDMI 2). (3 makes the system operate as if screens are connected to both HDMI 1 and HDMI 2).
Change the resolution of the screen (or screens) to 1280 x 720:
Preferences
->Screen Configuration
.
I2C Communication
The temperature sensor and the weight sensor are connected to the I2C pins of the Raspberry.
Run the
raspi-config
.
sudo raspi-config
Go to
Interface Options
and enable I2C.
Accessing Pins via Hardware (for Servos) and Using UART Pin for Communication
To access the pins via hardware (faster and less jittery than software access), and to allow the use of the UART Pin for communication with the sensors you need to change two settings:
Edit the
/boot/firmware/config.txt
file to include the following:
[all]
dtoverlay=pwm-2chan,pin=12,pin2=13,func=4,func2=4
enable_uart=1
Udev Rules for Consistent USB Device Naming
When you connect your Bpod device to the Raspberry Pi, it’s assigned a file path in /dev/
, typically named ttyACM0
. However, this name may vary (ttyACM1, ttyACM2, etc.), especially if you have other USB devices connected. To ensure a consistent and recognizable name, you can create a symbolic link to your Bpod device.
Navigate to the Udev rules folder where custom rules are stored:
cd /etc/udev/rules.d
Create a new rule file named
99-usb.rules
:
sudo nano 99-usb.rules
In the new rule file, add the following line to create a symbolic link named
Bpod
for any device that matches the patternttyACM*
. This will allow any device named ttyACM* (where * can be any number) to be consistently linked, provided it’s connected to a specific USB port (in this case, the port associated withKERNELS==3-1:1.0
).
KERNEL=="ttyACM*",KERNELS=="3-1:1.0",SYMLINK+="Bpod"
Note: The USB port identifier (KERNELS==“3-1:1.0”) may vary depending on the physical USB port you are using. For reference, the 3-1:1.0 port on the Raspberry Pi is usually the USB port next to the Ethernet connection. To confirm the exact port identifier, you can use the command dmesg
after connecting the device.
Activate the new rule by triggering the Udev process:
sudo udevadm trigger
Now, whenever the Bpod device is connected to the specified USB port, it will consistently appear with the symbolic link /dev/Bpod
, regardless of its dynamic ttyACM* designation.
Install Training Village
Make sure you are in .env environment.
source ~/.env/bin/activate
Clone the repository inside your
/home/raspberry/
directory.
git clone https://github.com/BrainCircuitsBehaviorLab/village.git
Navigate to folder
village
.
cd /home/raspberry/village
Install the repository.
pip install -e .
You’re ready to start the system by simply running the
main.py
file.python /home/raspberry/village/village/main.py
Create an Alias and Run the Training Village
Edit the .bashrc file:
nano ~/.bashrc
Add the following line to create an alias:
alias run_village='/home/raspberry/.env/bin/python /home/raspberry/village/village/main.py'
Reload the .bahsrc:
source ~/.bashrc
Run Training village:
run_village