Categories: DebianDesktopLinux

How to Install Arduino IDE on Debian 10

The Arduino software or IDE (Integrated Development Environment) is open-source software that is used to interact with the Arduino controller board. Using it, we can connect and communicate with the Arduino hardware. It contains a text editor that is used for writing, compiling and uploading code in Arduino hardware. You can install and run Arduino IDE on all major OS like Windows, Linux, and MacOS.

In this article, we will show you 2 methods on how you can install Arduino IDE software on your Linux operating system. We will use Debian10 for describing the procedure mentioned in this article.

Method #1: Install the latest version of Arduino IDE

Arduino IDE is available for download from its official website and can be installed using the installation script provided within the setup. Follow the below steps to do so:

Step 1: Download the Arduino Software (IDE)

To install the latest version of Arduino software, simply go to the download page of the Arduino official website. Then download the setup corresponding to the version of your system.

Step 2: Extract the package

Now navigate to your Downloads directory and decompress the downloaded archive as follows:

$ cd Downloads/

$ tar –xf arduino-1.8.10-linux64.tar.xz

Then navigate to the extracted folder using the cd command:

$ cd Arduino-1.8.10/

Finally run the installation script using the following command:

$ ./install.sh

Method 2: Install Arduino IDE from Debian package archive

Arduino IDE is also available in the package repository of Debian 10 OS. So, in this method we will see how you can install it using the APT package manager.

Step 1: Update package database

In this step, we will update the package database. Open the Terminal in your Debian OS by going in to the Activities tab in the top left corner of your desktop. Then in the search bar, type terminal. When the Terminal icon appears, click on it to launch it. then run the following command in it:

$ sudo apt update

Step 2: Install Arduino IDE

Next, in this step, we will install Arduino IDE by running the following command in Terminal:

$ sudo apt install Arduino

You will be provided with Y/N option, press y to continue.

Now wait for a while until the installation of Arduino IDE is completed.

Launch Arduino IDE

To launch Arduino IDE application on your system, hit the super key and in the search bar that appears, type Arduino. When the Arduino IDE icon appears, click on it to launch.

You will see the following default view of Arduino IDE.

Now we have learned how to install Arduino IDE in Debian based OS. You can use either of two methods discussed above that you find easier and convenient.

Karim Buzdar

About the Author: Karim Buzdar holds a degree in telecommunication engineering and holds several sysadmin certifications. As an IT engineer and technical author, he writes for various web sites. You can reach Karim on LinkedIn

Recent Posts

How to Install Magento 2 on AlmaLinux

Magento is a free and open-source e-commerce platform written in PHP. It is simple, easy…

1 year ago

How to Install ISPConfig Hosting Control Panel with Apache Web Server on Ubuntu 24.04

ISPConfig is an open-source control panel that allows users to manage multiple servers from a…

1 year ago

How to Test your Email Server (SMTP) Using the Telnet Command

As a Linux administrator, you may find it necessary to troubleshoot or test your Simple…

1 year ago

Managing Network Interfaces and Settings on Ubuntu 24.04 with nmcli

Ubuntu 24.04, like many modern Linux distributions, relies on the NetworkManager for managing network connections.…

2 years ago

Using Restic Backup on Ubuntu 24.04

Restic is a modern, open-source backup program designed for efficiency, security, and simplicity. It enables…

2 years ago

Installing phpMyAdmin on Rocky Linux 9 and Securing it with Let’s Encrypt SSL

phpMyAdmin is a popular free tool written in PHP intended to administer MySQL and MariaDB…

2 years ago