(!) Please ask about problems and questions regarding this tutorial on answers.ros.org. Don't forget to include in your question the link to this page, the versions of your OS & ROS, and also add appropriate tags.

インストール

Description: isoイメージ,debパッケージ,またはソースコードによるインストール手順

Keywords: turtlebot installation

Tutorial Level: BEGINNER

Next Tutorial: Post-Installation Setup

以下のオプションから希望するインストール手順を選んで下さい。

USB Installation

Not yet supported!

debパッケージからのインストール

前提条件

これらの手順はノートPCにUbuntu Preciseを既にインストールしているユーザ向けのものです。

手順

一般的なUbuntuの ros-hydro-desktop-full installationのインストール手順に従ってください。

加えて,TurtleBot用に以下のdebパッケージをインストールする必要があります。(何かしらの不具合を発見した場合,この項目をアップデートしてください)。

> sudo apt-get install ros-hydro-turtlebot ros-hydro-turtlebot-apps ros-hydro-turtlebot-viz ros-hydro-turtlebot-simulator ros-hydro-kobuki-ftdi

kobukiを使用している場合は最後にもう一つ、 udev ruleskobukiのudevルールを追加する必要があります. (管理者実行権限のパスワードが必要):

> . /opt/ros/hydro/setup.bash
> rosrun kobuki_ftdi create_udev_rules

利便性

利便性のために,.bashrcからsetup.shのスクリプトをsourceしておくと、ログイン後ただちに環境を立ち上げることが出来ます。

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

もし,インストールしたdebパッケージの上に開発環境設定を上書きしたのであれば,その設定スクリプトを代わりに指定してください.

Source インストール

概要

このガイドは、turtlebot sourcesをhackして貢献したい人に向けたものです。より詳しい情報については、メールで問い合わせて下さい <ros-sig-turtlelbot AT googlegroups DOT com>.

Hydro上では、全てがcatkin化されているので、sourceインストールはgroovyに比べてシンプルになっています。

準備

> sudo apt-get install python-rosdep python-wstool ros-hydro-ros
> sudo rosdep init
> rosdep update

ソフトウェア開発ワークスペース

> mkdir ~/turtlebot
> cd ~/turtlebot
> wstool init src https://raw.github.com/turtlebot/turtlebot/hydro/turtlebot.rosinstall -j8
> source /opt/ros/hydro/setup.bash
> rosdep install --from-paths src -i -y
> catkin_make

もしkobukiを使っているなら、 /dev/kobuki上にいつも見えるように、udebルールを作るのを忘れないように。(管理者実行権限のパスワードが必要です):

> source ~/turtlebot/devel/setup.bash
> rosrun kobuki_ftdi create_udev_rules

前の手順はdevelスペースでをソースを作りビルドするのに十分ですが、成果物をインストールしそれを同じように使うこともできます。(ほとんどのユーザには、これを行う即時の利益はまったくありません。)

# Follow the previous instructions up to catkin_make, then:
> catkin_make -DCMAKE_INSTALL_PREFIX=/opt/turtlebot/hydro
> cd build; sudo make install
> source /opt/turtlebot/hydro/setup.bash
# If you need to uninstall
> rm -rf /opt/turtlebot/hydro

-~

利便性

利便性のために,.bashrcからsetup.shのスクリプトをsourceしておくと、ログイン後ただちに環境を立ち上げることが出来ます。

> echo "source ~/turtlebot/devel/setup.bash" >> ~/.bashrc

次は?

Wiki: ja/turtlebot/Tutorials/hydro/Installation (last edited 2014-09-29 04:37:59 by Moirai)