roslaunch to launch python SimpleHTTPServer
Is there a way to add following to roslaunch?
roscd <package>
python -m SimpleHTTPServer 8000
Is there a way to add following to roslaunch?
roscd <package>
python -m SimpleHTTPServer 8000
Yes: create a small wrapper bash script that does roscd <package>
first, then runs python -m SimpleHTTPServer 8000
.
Easiest is to add this to a package, then use regular node type=".." pkg=".." name=".."
syntax to start it.
Personally I try to keep any ROS-isms out of such files, by passing the output of $(find package)
(an absolute path) as the first argument to the script (and then do a cd $x
(where x
is the correct argument nr) in the script, but make sure to take ROS args into account).
Please start posting anonymously - your entry will be published after you log in or create a new account.
Asked: 2017-05-22 15:31:14 -0500
Seen: 221 times
Last updated: May 23 '17
Generic process manager instead of roslaunch?
SIGACTION with Roslaunch - Use in a TCP server
Robotis Manipulator Error in roslaunch
Roslaunch across multiple machines failing when calling nodes.
Add two turtlebot in one .world
Custom SIGINT handler not triggered by roslaunch
Can I access the absolute or parent namespace of a node from within a launch file?
Colcon build and source install/setup.bash not finding packages