download from website set it as excutable file:
chmod +x <filepath>
./<filepath>sudo systemctl stop brltty-udev.service
sudo systemctl mask brltty-udev.service
sudo systemctl stop brltty.service
sudo systemctl disable brltty.servicesudo chown `<username>` /dev/ttyUSB0dmesg | tail # get device port for example ttyusb0
ls -l /dev/`<device port>` # get the group name that can control the port. for example dialout
sudo usermod -aG `<group name>` `<username>`Create the environment using conda
conda create -n controller python=3.10
conda activate controller
pip install -e .Ubuntu uses brltty, so we need to uninstall it and stop the services. See more
info here.
sudo systemctl stop brltty-udev.service
sudo systemctl mask brltty-udev.service
sudo systemctl stop brltty.service
sudo systemctl disable brltty.service