How to Install Arduino IDE on Ubuntu

Arduino IDE is a free and open source integrated development environment for Windows, MacOS and Linux. Using this you can write code and upload it to the Arduino board. It supports all available Arduino boards. Arduino is a electronics platform based on hardware and software. Using Arduino programming language Arduino IDE, you can command Arduino boards like turning a motor, LED and publishing online like tasks. It is released under GNU general public license Version 2 license.

Arduino IDE

Download Arduino IDE

Install Arduino IDE on Ubuntu

Download Arduino IDE for Linux in zip file from the above download link and save it on your Downloads folder. Now right click on the downloaded file and select Extract.

Arduino IDE install

Now open the extracted folder and right click on the arduino-ide program file and select Run option. It will open the Arduino IDE on your system.

Also Read:  How to install Nginx Web Server on Ubuntu

Install Arduino IDE via AppImage:

Download Arduino IDE for Linux in .AppImage file format from the above download link and save it on your Downloads folder. Now in terminal run below commands one by one.

Note: Here “arduino-ide_2.3.2_Linux_64bit.AppImage” is the downloaded file name. You can change below commands based on your file name.

cd Downloads
sudo chmod +x ~ arduino-ide_2.3.2_Linux_64bit.AppImage
sudo ./arduino-ide_2.3.2_Linux_64bit.AppImage

If you get any error then try this below command.

sudo ./arduino-ide_2.3.2_Linux_64bit.AppImage --no-sandbox
If you liked this article, please subscribe to our YouTube Channel. You can also stay connected with us on X (Twitter) and Facebook.



Leave a Reply