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

LikeSmith's profile - activity

2021-05-07 05:35:56 -0500 received badge  Nice Answer (source)
2016-06-03 11:09:12 -0500 received badge  Enthusiast
2016-04-25 14:35:46 -0500 commented answer rqt_graph not shown in window

I am having the same issue as above, and I tried to do this, but pip stopped working after i uninstalled pyparsing.

2014-05-20 06:56:37 -0500 received badge  Good Answer (source)
2014-05-19 05:56:59 -0500 commented question Rosrun executable not found

did you run the setup script for your catkin workspace?

2014-05-15 09:31:14 -0500 received badge  Nice Answer (source)
2014-05-15 08:54:05 -0500 answered a question How can i download and install ROS in windows

you can download virtualbox here: https://www.virtualbox.org You will want to download the ubuntu iso from their website ( www.ubuntu.com ) right now, you would probably want 12.04 as ROS Indigo isn't released yet.

http://www.wikihow.com/Install-Ubuntu... here is a tutorial on how to create a virtual machine and install ubuntu on it. After you have installed ubuntu, go the the main ros website and follow the installation guide for ubuntu (it is much more straight forward than the windows instructions) and enjoy!

2014-05-15 07:30:35 -0500 commented answer How can i download and install ROS in windows

ros is not supported on windows. I would recommend using a virtual machine, such as virtualbox, that runs ubuntu and install ros there.

2014-05-15 06:26:45 -0500 received badge  Necromancer (source)
2014-05-15 06:26:45 -0500 received badge  Teacher (source)
2014-05-15 06:19:16 -0500 received badge  Editor (source)
2014-05-15 06:09:03 -0500 answered a question catkin_make linking error

Have you added the line 'target_link_libraries(toeminator_ros_brigde_node ${catkin_LIBRARIES})' to your CMakeLists.txt file?

Also, are you trying to compile all three source files to a single executable in the add_executable line? As written, it will generate a single executable call toeminator_ros_bridge_node. If you want to make three nodes, you will need three add_executable calls for example:

add_executable(ToeminatorROSBridge src/ToeminatorROSBridge.cpp)
add_executable(RobotInterface src/RobotInterface.cpp)
add_executable(NetworkInterface src/NetworkInterface.cpp)

you would also need to add a target_link_libraries line for each target.