22
16

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Arduino IDEをUbuntu 20.04にインストールする

Last updated at Posted at 2021-01-03

ポイント

  1. https://www.arduino.cc/en/Guide/Linux よりも簡単になっている。
  2. ./install.sh を実行した場所がインストール先となるため、先にインストール先に移動しておく必要がある。

確認環境

  • Ubuntu 20.04 amd64 (in VirtualBox 6.1)
  • Arduino IDE 1.8.13

手順

ここでは Arduino IDE のインストール先を ~/.local/ とします。
一回はrebootする必要があります。

$ tar xvf ~/Downloads/arduino-1.8.13-linux64.tar.xz
$ mkdir -p ~/.local/
$ mv arduino-1.8.13 ~/.local/
$ cd ~/.local/arduino-1.8.13/
$ bash arduino-linux-setup.sh $USER
$ sudo systemctl reboot

再起動後

$ cd ~/.local/arduino-1.8.13/
$ sudo bash install.sh

デスクトップ上に arduino-arduinoide.desktop がある場合は、右クリックのコンテキストメニューにて「起動を許可する」を選択すると、起動できるようになります。
※ランチャーの中で Arduino IDE を探して起動も可能です。
※日本語環境で英語フォルダ名にしている場合はショートカットが作られない場合があるようです。

ちょっとだけ解説

arduino-linux-setup.sh$USER を dialout グループとかに追加してくれるので /dev/ttyACM** とかのパーミッション問題が片付きます。

EoT

22
16
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
22
16

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?