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

ROS2インストール・初期設定 for Crystal_Clemmys

Last updated at Posted at 2019-04-13

ROS2関係トップページへ
Crystal Clemmys用
Dashing Diademata用はこちら

Ubuntu 18.04

公式インストールガイドのDebian Packagesに従ってインストール.

特記

localeについて

説明ではen_US.UTF-8だが,ja_JP.UTF-8に置き換えてインストール.

Install ROS2 packages

公式インストールガイドのDebian packagesにてInstall ROS2 packagesでインストールするものを選択しないといけないが,以下のように選ぶ.

  • Ubuntu Desktop 18.04
    • Desktop Install(Recommended)
  • Ubuntu Server 18.04
    • ROS-Base Install(Bare Bones)

Ubuntu Server 18.04は,例えばRaspberry Pi 3B+でロボットを制御する場合(GUIが不必要な場合)での使用が考えられる.

上記ガイド以外でインストールしたもの

terminal
$ export ROS_DISTRO=crystal
$ sudo apt install ros-$ROS_DISTRO-rqt*
$ sudo apt install python3-colcon-common-extensions
$ sudo apt install python-catkin-pkg python-bloom
$ sudo apt install python-pip python3-pip
$ sudo pip install -U catkin_pkg
$ sudo pip install empy

pip install -U catkin_pkgやempyをしていないと,ROS2のビルド(colcon build)でImportErrorが出る場合がある.というか出た.

sudo pip install ...はsudo -H pip installの方がよい

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?