4
8

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.

ROS (Kinetic Kame) のインストール

Last updated at Posted at 2016-06-25
1 / 7

はじめに


ROS インストール

0. 参照ドキュメント

ほぼドキュメントの手順通りに行っています。

1. sources.listを設定する

$ sudo sh -c 'echo "deb http://packages.ros.org/ros/ubuntu $(lsb_release -sc) main" > /etc/apt/sources.list.d/ros-latest.list'

2. 鍵の設定

$ sudo apt-key adv --keyserver hkp://ha.pool.sks-keyservers.net:80 --recv-key 0xB01FA116

3. パッケージを最新のものにアップデート

$ sudo apt-get update

4. ROS のフルセット版をインストール

sudo apt-get install ros-kinetic-desktop-full

5. rosdepの初期化

$ sudo rosdep init
$ rosdep update

6. 環境変数の設定

$ echo "source /opt/ros/kinetic/setup.bash" >> ~/.bashrc
$ source ~/.bashrc

7. rosinstallの準備

$ sudo apt-get install python-rosinstall

感想

4
8
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
4
8

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?