ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question
0

[Theorical] Python use in ROS

asked 2019-09-24 06:54:19 -0500

drodgu gravatar image

Hi everyone,

I'm new using python in ROS but I've been developing robots solution for a little time in C++. The thing is that when you want to use a ROS C++ node you must configure CMakeLists.txt properly in order to built those nodes. The point is that, for what I've seen on ROS Tutorials, when you want to use a python node you does not have to make any configuration of this file: just compile and run on the command console chmod +x python_node_name.py in order to make it an executable.

1) Is there a way to make python executable nodes automatically? Something similar to what you do when you configure CMakeLists.txt for a new C++ node.

2) On the other hand, I would like to know if it is compulsory to generate setup.py and when you must use it. Because when I use chmod +x *.py sentence I do not write any setup.py or __init__.py file.

3) Finally, is it possible to call from ROS a python module that has been already compiled (for example a non ROS library to make a visual enviroment for an application)? If so, how?

Maybe, there are tutorial on the web that explains all that things but I haven't found any that make it clear to me. Thanks in advance for you help.

edit retag flag offensive close merge delete

Comments

1

Just some high-level clarification: there is nothing really 'special' about using Python in ROS nodes. Just about everything you'd normally be able or would want to do with Python is possible.

Your questions 2 and 3 are essentially not ROS-related questions, but generic Python questions. I'm not writing this because we don't want to help you, but because you don't need to limit yourself "to ROS" related sites when looking for support.

gvdhoorn gravatar image gvdhoorn  ( 2019-09-24 09:08:26 -0500 )edit

Thank you @gvdhoorn, I know that it is not the best option to limit myself just to ROS related sites. But for me it is easier to ask here and make concept relation between all the answer and ROS. And I use this way to ask about this kind of doubts because it could be usefull for another beginner ROS user, I guess that everyone has pretty much the same doubts when they begin using ROS :)

drodgu gravatar image drodgu  ( 2019-09-24 09:47:41 -0500 )edit

1 Answer

Sort by ยป oldest newest most voted
2

answered 2019-09-24 08:42:18 -0500

LeoE gravatar image

updated 2019-09-24 13:49:24 -0500

jayess gravatar image

For

  1. yes, you can actually use the CMakeLists.txt for automatic node creation.
  2. If you want to have an automatic generation as described in 1. you will have to create an __init__.py and a setup.py file. (For 1. and 2. look at this)
  3. Yes, you can, have a look at this or this.
edit flag offensive delete link more

Comments

Thanks that was very usefull!

drodgu gravatar image drodgu  ( 2019-09-24 09:44:37 -0500 )edit

Question Tools

2 followers

Stats

Asked: 2019-09-24 06:54:19 -0500

Seen: 318 times

Last updated: Sep 24 '19