zoukankan      html  css  js  c++  java
  • ROS

    My Environment

    VMware Workstation 15 Player + Ubuntu x64 2020.04

    Configure your Ubuntu repositories

    Configure your Ubuntu repositories to allow "restricted," "universe," and "multiverse."

    Setup your sources.list

    Setup your computer to accept software from packages.ros.org.

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

    Set up your keys

    sudo apt-key adv --keyserver 'hkp://keyserver.ubuntu.com:80' --recv-key C1CF6E31E6BADE8868B172B4F42ED6FBAB17C654
    

    Installation

    First, make sure your Debian package index is up-to-date:

    sudo apt update
    

    Desktop-Full Install: (Recommended) : Everything in Desktop plus 2D/3D simulators and 2D/3D perception packages

    sudo apt install ros-noetic-desktop-full
    

    There are even more packages available in ROS. You can always install a specific package directly.

    To find available packages, see ROS Index or use:

    apt search ros-noetic
    

    Environment setup

    If you have more than one ROS distribution installed, ~/.bashrc must only source the setup.bash for the version you are currently using.

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

    Test

    roscore
    
  • 相关阅读:
    08mybatis映射文件及别名
    2016年阅读书单
    Java的位运算
    Python线程操作
    Java之Jackson框架
    Java线程
    Canvas 知识体系简单总结
    图片轮播
    media页面布局2
    利用@media screen实现网页布局的自适应
  • 原文地址:https://www.cnblogs.com/zdfffg/p/13394285.html
Copyright © 2011-2022 走看看