0
0

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 3 years have passed since last update.

UbuntuにArduino IDEをインストールして使えるようにするまで

Posted at

概要

タイトル通りだが、Arduino IDEをUbuntuで使えるようにするまでの流れ。
最近環境構築をする機会があったため備忘録として。

環境

  • OS: Ubuntu 18.04.2 LTS (MacbookにUSBブート)
  • CPU: i5 64bit

手順

Arduino IDEをダウンロード

公式サイトからダウンロードしてくる。
今回はLinux 64bitsを選択

Screenshot from 2020-12-02 21-49-54.png

解凍する

ターミナルを開き、ダウンロードフォルダに移動。

cd ~/ダウンロード

解凍コマンドにて圧縮ファイルを解凍する。
tarコマンドはつけるオプションによって圧縮/解凍などを選択できるらしい。tar.xz形式を解凍するためには-Jxvfが必要。

tar -Jxvf arduino-1.8.13-linux64.tar.xz 

インストールスクリプトを実行する

install.shを実行することでシンボリックリンクを貼ったりしてarduinoコマンドを使えるようにしてくれる。
自分は管理者権限が必要と怒られたのでsudoをつけて実行した。

cd arduino-1.8.13/
sudo ./install.sh

起動

正しくインストールできていれば起動できるようになっている。

arduino
0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?