博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ROS安装与卸载
阅读量:2155 次
发布时间:2019-05-01

本文共 844 字,大约阅读时间需要 2 分钟。

几年研究生临近毕业了,干过很多活,整理一下,以免以后忘了

ROS是机器人操作系统 我在ubuntu下使用

按照ROS wiki教程来安装

安装pip的方法:
Install pip and virtualenv for Ubuntu 10.10 Maverick and newer
 
$ sudo apt-get install python-pip python-dev build-essential 
$ sudo pip install --upgrade pip 
$ sudo pip install --upgrade virtualenv 

rosdep错误解决方案

测试ROS安装好了没
重新打开终端
roswtf

或者

$ rospack find roscpp
roscd roscpp
pwd
echo $ROS_PACKAGE_PATH

卸载ROS
aptitude search ros-
sudo apt-get install aptitude
sudo aptitude remove ros-hydro-ros

You can see what is installed by running

 $ aptitude search ros-  
搜索包
另外
moveit!是ROS的一个子集
MoveIt! is currently developed and works against Ubuntu and ROS Indigo and Hydro. It is recommended that you move to ROS Indigo for the latest features. MoveIt! for ROS Groovy is no longer actively supported.
MoveIt/OMPL benchmarks need the MoveIt ROS services to be running beforehand
你可能感兴趣的文章
按时间轴简述九大卷积神经网络
查看>>
详解循环神经网络(Recurrent Neural Network)
查看>>
为什么要用交叉验证
查看>>
用学习曲线 learning curve 来判别过拟合问题
查看>>
用验证曲线 validation curve 选择超参数
查看>>
用 Grid Search 对 SVM 进行调参
查看>>
用 Pipeline 将训练集参数重复应用到测试集
查看>>
PCA 的数学原理和可视化效果
查看>>
机器学习中常用评估指标汇总
查看>>
什么是 ROC AUC
查看>>
Bagging 简述
查看>>
详解 Stacking 的 python 实现
查看>>
简述极大似然估计
查看>>
用线性判别分析 LDA 降维
查看>>
用 Doc2Vec 得到文档/段落/句子的向量表达
查看>>
使聊天机器人具有个性
查看>>
使聊天机器人的对话更有营养
查看>>
一个 tflearn 情感分析小例子
查看>>
attention 机制入门
查看>>
手把手用 IntelliJ IDEA 和 SBT 创建 scala 项目
查看>>