0

I am using ubuntu 14.04 I tried to install Arduino IDE the last version 1.8.0 because when I installed it by terminal it was 2009 1.0.5 version

  1. I download the last version
  2. Extract the file arduino-1.8.0-linux64.tar.xz
  3. Moved the result folder to /opt/ directory for global usesudo mv arduino-1.8.0 /opt
  4. cd /opt/arduino-1.8.0/
  5. chmod +x install.sh
  6. ./install.sh

It created a desktop icon but when i try to start it.

it is just show this screen for seconds and do nothing : enter image description here

Update:

I tried to run it from terminal ./arduino it show that enter image description here

Tarek
  • 368
  • 1
  • 7
  • 20

1 Answers1

1

I searched for the error I found in terminal and find it may caused by old java version

and I upgrade java version by the way in this post

sudo apt-add-repository ppa:webupd8team/java
sudo apt-get update
sudo apt-get install oracle-java8-installer
Tarek
  • 368
  • 1
  • 7
  • 20