...
Code Block |
---|
uname -m >> aarch64 |
...
Modify the bulk transfer rate configuration file as follows:
...
Code Block |
---|
sudo sh -c 'echo 150 > /sys/module/usbcore/parameters/usbfs_memory_mb' |
...
Save the file and reboot. Make sure of changes by running below in command prompt:
...
Extract the contents of the zip in a folder. I have extracted the SDK contents in 'SDK' directory in '/home/bb-pi/'.
...
In the terminal type in the following commands:
Code Block |
---|
cd SDK mkdir build cd build cmake -DCMAKE_BUILD_TYPE=Release .. cmake --build . |
...
Once the application builds successfully, connect the camera to the RPi using a USB cable and launch the application by
Code Block |
---|
./RemoteCli |
...
Download Miniforge using the below link:
https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-Linux-aarch64.sh
...
Run below commands to install it:
Code Block |
---|
cd ~/Downloads bash Miniforge3-Linux-aarch64.sh |
...
Create conda env with python 3.9 using below command:
Code Block |
---|
conda create -n bbot python=3.9 |
...
Install PyQt5 in raspberry pi using below commands:
...