0
1

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】ROS kineticのインストール

Last updated at Posted at 2020-02-27

#ROSのインストール手順

Ubuntu 16.04へROS(kinetic)をインストールするところから
ワークスペースを作成するところまでを掲載.
内容は ROS公式サイトから抜粋したもの.

###1. ROSのインストール

sudo sh -c 'echo "deb http://packages.ros.org/ros/ubuntu $(lsb_release -sc) main" > /etc/apt/sources.list.d/ros-latest.list'
sudo apt-key adv --keyserver 'hkp://ha.pool.sks-keyservers.net:80' --recv-key C1CF6E31E6BADE8868B172B4F42ED6FBAB17C654
sudo apt-get update
sudo apt-get install ros-kinetic-desktop-full -y

インストール後,依存関係を設定するために下記コマンドを実行して環境設定を実施.

###2. 環境設定

sudo rosdep init
rosdep update
echo "source /opt/ros/kinetic/setup.bash" >> ~/.bashrc
source ~/.bashrc

###3. ワークスペースの作成
ここではワークスペースの名前をcatkin_wsとしていますが,
好きな名前でも大丈夫.
その場合はcatkin_wsの部分を自分で入力した名前に置き換えて実行が必要.

mkdir -p ~/catkin_ws/src
cd ~/catkin_ws/src
catkin_init_workspace
cd ~/catkin_ws/
catkin_make
echo "source ~/catkin_ws/devel/setup.bash" >> ~/.bashrc
source ~/.bashrc

###4. おわりに
以上で,ROSのインストールとワークスペースの作成は完了
git等からROSのプログラムをダウンロードして場合は~/catkin_ws/src/の中に追加していく

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?