Any Arduino IDE installation video/guide there?

Any Arduino IDE installation video/guide there?

I’ve installed and run the Arduino IDE V2 flatpak version from the GNOME Sofware app. Installation is easy. See the following note in the app’s page in Software for a note regarding the need for permissions on USB devices in order to upload a sketch:

The Flatpak build of Arduino IDE 2.x requires the user to have USB permissions to upload a sketch, preferably, the user has to be part of the dialout group.

Alternatively, add the following 2 lines to /etc/udev/rules.d/50-arduino.rules:

KERNEL=="ttyUSB[0-9]*",MODE="0666"
KERNEL=="ttyACM[0-9]*",MODE="0666"
2 Likes

Thanks Paul - will look into it.