1

How do I installed the Arduino IDE in Ubuntu from a command line? I understand that a command line will look for the package on the web repositories and installed in a proper location in the hard drive. Please correct me if not correct me if the logic is not correct. Arduino is found in http://Arduino.cc

UPDATE 1:

I use this command sudo apt-get install ubuntu-make but after installing a lot of files (Don't know where and in which folder) don't see any Arduino Icon

enter image description here

1 Answers1

1

You can install arduino IDE using apt:

sudo apt install arduino

but in repositories is very old version of this program so better is to download arduino IDE from official website arduino.cc, uncompress it and run install.sh which will install program and create icon.

After installation you will have probably problem with uploading code, so run this command:

sudo usermod -a -G dialout $USER

Then logout and login (or reboot) and try it again.

There is also tutorial for it on website of arduino arduino IDE installation

pomsky
  • 70,557
Matej
  • 154