当前位置: 首页 > news >正文

【ROS】如何在ROS中使用anaconda虚拟环境?

先上结论:只需要在虚拟环境中安装以下几个包。

pip install rospkg rospy catkin_tools

以下是探索过程:

1. 建立测试的工作空间、软件包。

mkdir -p ~/test_ws/src
cd ~/test_ws/src/
catkin_init_workspace
catkin_create_pkg test_ros_python std_msgs rospy
cd ..
catkin_make
echo "source ~/test_ws/devel/setup.bash" >> ~/.bashrc
source ~/.bashrc

创建测试代码。

roscd test_ros_python/
mkdir scripts
touch test_ros_python.py
chmod +x test_ros_python.py

 其中的内容来自官方教程中使用python创建发布者。

#!/usr/bin/env python
# license removed for brevity
import rospy
from std_msgs.msg import String

def talker():
    pub = rospy.Publisher('chatter', String, queue_size=10)
    rospy.init_node('talker', anonymous=True)
    rate = rospy.Rate(10) # 10hz

    while not rospy.is_shutdown():
        hello_str = "hello world %s" % rospy.get_time()
        rospy.loginfo(hello_str)
        pub.publish(hello_str)
        rate.sleep()

if __name__ == '__main__':
    try:
        talker()
    except rospy.ROSInterruptException:
        pass

2. 在原生环境下运行。

roscore
# 在新的终端下
rosrun test_ros_python test_ros_python.py

得到下图结果,运行正常。

3. 使用原生环境没有的包。 

代码增加使用scipy,这是在原生环境下没有的包,可类比于其它任何包。

#!/usr/bin/env python
# license removed for brevity
import rospy
from std_msgs.msg import String

from scipy import constants

print(constants.pi)

def talker():
    pub = rospy.Publisher('chatter', String, queue_size=10)
    rospy.init_node('talker', anonymous=True)
    rate = rospy.Rate(10) # 10hz

    while not rospy.is_shutdown():
        hello_str = "hello world %s" % rospy.get_time()
        rospy.loginfo(hello_str)
        pub.publish(hello_str)
        rate.sleep()

if __name__ == '__main__':
    try:
        talker()
    except rospy.ROSInterruptException:
        pass

同样地进行测试。

roscore
# 在新的终端下
rosrun test_ros_python test_ros_python.py

得到下图结果,运行报错。

4. 创建虚拟环境并测试。

conda create -n test-ros-python python=3.6
conda activate test-ros-python

roscore
# 在新的终端下
rosrun test_ros_python test_ros_python.py

得到下图结果,并不能成功运行ros。

 于是来到最为重要的一步,安装以下几个ROS必须的包。

pip install rospkg rospy catkin_tools

然后再次运行得到下图结果,找不到scipy包。

安装scipy。

pip install scipy

再次运行,成功!

相关文章:

  • 哪个网站做的系统好用/域名注册网
  • 网站日志文件分析/国外产品推广平台
  • 网站建设属于会计哪个科目/做一个简单的网站需要多少钱
  • 仙游哪里可以做网站的/营销网络营销
  • 徐州市建设局网站电话号码/谷歌seo外链平台
  • wordpress tag标签页/调价智能关键词软件
  • 什么是 PowerShell?
  • select......for update会锁表还是锁行?
  • 信安软考 第十五章 网络安全主动防御技术与应用
  • 面试官:深度不够,建议回去深挖
  • 自监督学习在语音和影像上的应用
  • C++中GDAL批量读取大量栅格遥感影像文件并生成各像元在不同文件中数值的时间序列数组
  • 小学生python游戏编程7----角色精灵定义
  • 【vulfocus】tomcat文件上传 (CVE-2017-12615)
  • 使用Mybatis,实现批量操作
  • 【maven】maven是什么?maven安装及idea中使用maven
  • MMDetection3d对KITT数据集的训练与评估介绍
  • 内网渗透之 windows 基础