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

dayogeorge's profile - activity

2023-02-09 22:54:32 -0500 received badge  Student (source)
2019-07-24 17:49:55 -0500 received badge  Famous Question (source)
2019-07-24 17:49:55 -0500 received badge  Notable Question (source)
2019-03-01 12:33:56 -0500 marked best answer catkin_make: cannot find 'std_msg'

I'm still in the process of setting up my ROS, I am getting an error message when i run this command

catkin_make

The above command is at step 4 here

Then i get this error Message:

Base path: /home/dayo/catkin_ws
Source space: /home/dayo/catkin_ws/src
Build space: /home/dayo/catkin_ws/build
Devel space: /home/dayo/catkin_ws/devel
Install space: /home/dayo/catkin_ws/install
####
#### Running command: "make cmake_check_build_system" in "/home/dayo/catkin_ws/build"
####
-- Using CATKIN_DEVEL_PREFIX: /home/dayo/catkin_ws/devel
-- Using CMAKE_PREFIX_PATH: /opt/ros/kinetic
-- This workspace overlays: /opt/ros/kinetic
-- Using PYTHON_EXECUTABLE: /usr/bin/python
-- Using Debian Python package layout
-- Using empy: /usr/bin/empy
-- Using CATKIN_ENABLE_TESTING: ON
-- Call enable_testing()
-- Using CATKIN_TEST_RESULTS_DIR: /home/dayo/catkin_ws/build/test_results
-- Found gtest sources under '/usr/src/gtest': gtests will be built
-- Using Python nosetests: /usr/bin/nosetests-2.7
-- catkin 0.7.8
-- BUILD_SHARED_LIBS is on
-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-- ~~  traversing 1 packages in topological order:
-- ~~  - beginner_tutorials
-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-- +++ processing catkin package: 'beginner_tutorials'
-- ==> add_subdirectory(beginner_tutorials)
CMake Warning at /opt/ros/kinetic/share/catkin/cmake/catkinConfig.cmake:76 (find_package):
  Could not find a package configuration file provided by "std_msg" with any
  of the following names:
    std_msgConfig.cmake
    std_msg-config.cmake
  Add the installation prefix of "std_msg" to CMAKE_PREFIX_PATH or set
  "std_msg_DIR" to a directory containing one of the above files.  If
  "std_msg" provides a separate development package or SDK, be sure it has
  been installed.
Call Stack (most recent call first):
  beginner_tutorials/CMakeLists.txt:10 (find_package)
-- Could not find the required component 'std_msg'. The following CMake error indicates that you either need to install the package with the same name or change your environment so that it can be found.
CMake Error at /opt/ros/kinetic/share/catkin/cmake/catkinConfig.cmake:83 (find_package):
  Could not find a package configuration file provided by "std_msg" with any
  of the following names:
    std_msgConfig.cmake
    std_msg-config.cmake
  Add the installation prefix of "std_msg" to CMAKE_PREFIX_PATH or set
  "std_msg_DIR" to a directory containing one of the above files.  If
  "std_msg" provides a separate development package or SDK, be sure it has
  been installed.
Call Stack (most recent call first):
  beginner_tutorials/CMakeLists.txt:10 (find_package)
-- Configuring incomplete, errors occurred!
See also "/home/dayo/catkin_ws/build/CMakeFiles/CMakeOutput.log".
See also "/home/dayo/catkin_ws/build/CMakeFiles/CMakeError.log".
Makefile:290: recipe for target 'cmake_check_build_system' failed
make: *** [cmake_check_build_system] Error 1
Invoking "make cmake_check_build_system" failed*

This is the CMakeLists.txt :

cmake_minimum_required(VERSION 2.8.3)
project(beginner_tutorials)

find_package(catkin REQUIRED COMPONENTS
  roscpp
  rospy
  std_msgs
)  

catkin_package()

include_directories(
  ${catkin_INCLUDE_DIRS}
)

This is the Package.xml :

<?xml version="1.0"?>
<package format="2">
  <name>beginner_tutorials</name>
  <version>0.0.0</version>
  <description>The beginner_tutorials package</description>
  <maintainer email="dayo@todo.todo">dayo</maintainer>
  <license>TODO</license>

  <buildtool_depend>catkin</buildtool_depend>
  <build_depend>roscpp</build_depend>
  <build_depend>rospy</build_depend>
  <build_depend>std_msgs</build_depend>
  <build_export_depend>roscpp</build_export_depend>
  <build_export_depend>rospy</build_export_depend>
  <build_export_depend>std_msgs</build_export_depend>
  <exec_depend>roscpp</exec_depend>
  <exec_depend>rospy</exec_depend>
  <exec_depend>std_msgs</exec_depend>

  <export>
  </export>
</package>

These are the outputs of the following commands:

dpkg -l | grep std-msgs

ii  ros-kinetic-std-msgs                         0.5.11-0xenial-20171104-175741-0800                   amd64        Standard ROS Messages including common message ...
(more)
2018-08-15 08:26:51 -0500 received badge  Famous Question (source)
2018-08-09 07:28:37 -0500 received badge  Notable Question (source)
2018-07-15 14:27:37 -0500 marked best answer how do i install the ros tutorials here http://wiki.ros.org/ROS/Tutorials/NavigatingTheFilesystem

Hi I'm just starting out with ROS. i'm unable to install the ros tutorials in this this link navigating the file system.

When I type his command :

sudo apt-get install ros-<kinetic>-ros-tutorials

I get this result:

bash: kinetic: No such file or directory

Please what can I do?

2018-07-15 14:27:34 -0500 received badge  Famous Question (source)
2018-02-19 01:59:09 -0500 asked a question syntax for callback function

syntax for callback function Hi everyone I'm new to ROS, please can anyone help with the syntax of defining a callback

2018-02-12 14:26:54 -0500 commented answer catkin_make: cannot find 'std_msg'

there is nothing more i'm not telling you..i followed the steps in the tutorials and i post the outputs

2018-02-12 06:55:46 -0500 commented question rosnode list error

i followed the beginners tutorial step by step and i source /opt/ros/kinetic/setup.bash

2018-02-12 06:47:07 -0500 received badge  Enthusiast
2018-02-12 02:22:20 -0500 received badge  Popular Question (source)
2018-02-11 14:23:15 -0500 asked a question rosnode list error

rosnode list error I'm not getting the expected output as shown in Step 6 here dayo@dayo-HP-2000-Notebook-PC:~/catkin_w

2018-02-11 12:31:56 -0500 received badge  Popular Question (source)
2018-02-11 11:53:49 -0500 commented question catkin_make: cannot find 'std_msg'

Yes..thanks. What is meant by the statement "source your environment"? It is usually this command: source /opt/ros/kine

2018-02-11 09:08:59 -0500 commented question catkin_make: cannot find 'std_msg'

check for the output, is it ok?

2018-02-11 09:08:36 -0500 commented question catkin_make: cannot find 'std_msg'

check for the output

2018-02-11 09:06:11 -0500 edited question catkin_make: cannot find 'std_msg'

catkin_make: cannot find 'std_msg' I'm still in the process of setting up my ROS, I am getting an error message when i r

2018-02-11 07:55:09 -0500 commented question issue with rospack depends1

wow! @jayess yes i followed step 4. @gvdhoorn so what should I do now? I thought it was resolved from the output I poste

2018-02-11 07:53:49 -0500 commented question issue with rospack depends1

wow! so what should I do now? I thought it was resolved from the output I posted here

2018-02-10 16:59:43 -0500 asked a question issue with rospack depends1

issue with rospack depends1 I get an error when i run the command in step 5 of this link rospack depends1 beginner_t

2018-02-10 16:21:44 -0500 commented question catkin_make: cannot find 'std_msg'

output looks good now..check it out in my updated edited post...what do you think? I need to understand why the beginner

2018-02-10 16:20:32 -0500 edited question catkin_make: cannot find 'std_msg'

catkin_make: cannot find 'std_msg' I'm still in the process of setting up my ROS, I am getting an error message when i r

2018-02-10 10:42:30 -0500 commented question catkin_make: cannot find 'std_msg'

lol,,ok ..no more please. So check my edited post for the new catkin_make output

2018-02-10 10:41:30 -0500 edited question catkin_make: cannot find 'std_msg'

catkin_make: cannot find 'std_msg' I'm still in the process of setting up my ROS, I am getting an error message when i r

2018-02-10 10:22:33 -0500 commented question catkin_make: cannot find 'std_msg'

please i didnt get your last message...you men i should delete the beginner_tutorials file in this directory /home/dayo/

2018-02-10 09:13:25 -0500 commented question catkin_make: cannot find 'std_msg'

they are towards the end of my edited post

2018-02-10 09:12:43 -0500 commented question catkin_make: cannot find 'std_msg'

pls check for all the outputs

2018-02-10 09:11:28 -0500 edited question catkin_make: cannot find 'std_msg'

catkin_make: cannot find 'std_msg' I'm still in the process of setting up my ROS, I am getting an error message when i r

2018-02-10 07:31:30 -0500 edited question catkin_make: cannot find 'std_msg'

catkin_make: cannot find 'std_msg' I'm still in the process of setting up my ROS, I am getting an error message when i r

2018-02-10 07:30:33 -0500 commented question catkin_make: cannot find 'std_msg'

you mean updates in terms of std_msgs?

2018-02-10 07:27:37 -0500 edited question catkin_make: cannot find 'std_msg'

catkin_make: cannot find 'std_msg' I'm still in the process of setting up my ROS, I am getting an error message when i r

2018-02-10 07:11:34 -0500 edited question catkin_make: cannot find 'std_msg'

catkin_make: cannot find 'std_msg' I'm still in the process of setting up my ROS, I am getting an error message when i r

2018-02-10 06:15:19 -0500 commented question catkin_make: cannot find 'std_msg'

thanks a lot bro. I removed the source and then i ran the commands. check the output of catkin_make in my edited post. L

2018-02-10 05:45:24 -0500 commented question catkin_make: cannot find 'std_msg'

yes my ubuntun is 16.04.3 LTS xenial. pls how do i access the .bashrc file?

2018-02-10 05:03:07 -0500 commented question catkin_make: cannot find 'std_msg'

Please check my edited post for the output of the commands above

2018-02-10 05:01:15 -0500 edited question catkin_make: cannot find 'std_msg'

catkin_make: cannot find 'std_msg' I'm still in the process of setting up my ROS, I am getting an error message when i r

2018-02-10 03:45:04 -0500 commented question catkin_make: cannot find 'std_msg'

i used this command: sudo apt-get install ros-kinetic-desktop-full And it can be foundhere I basically just followed

2018-02-10 03:17:28 -0500 commented question catkin_make: cannot find 'std_msg'

i'm trying to installing kinetic on ubuntu. Amd i'm following the steps here

2018-02-09 22:24:09 -0500 commented question catkin_make: cannot find 'std_msg'

i followed the steps on ros.org what do you suggest i do?

2018-02-09 22:24:09 -0500 received badge  Commentator
2018-02-09 20:52:07 -0500 commented question catkin_make: cannot find 'std_msg'

thanks guys. Please check the package,xml now. So how should I proceed? I'm still at step 4 on this page: http://wiki.ro

2018-02-09 20:45:43 -0500 edited question catkin_make: cannot find 'std_msg'

Error after running catkin_make I'm still in the process of setting up my ROS, I am getting an error message when i run

2018-02-09 20:44:45 -0500 edited question catkin_make: cannot find 'std_msg'

Error after running catkin_make I'm still in the process of setting up my ROS, I am getting an error message when i run

2018-02-09 17:18:03 -0500 edited question catkin_make: cannot find 'std_msg'

Error after running catkin_make I'm still in the process of setting up my ROS, I am getting an error message when i run

2018-02-09 02:11:56 -0500 received badge  Famous Question (source)
2018-02-08 20:52:47 -0500 commented question catkin_make: cannot find 'std_msg'

ok so i tried the post here but it was not working so i reposted the question and it is better. Please check for it

2018-02-08 20:48:19 -0500 asked a question Error after running catkin_make

Error after running catkin_make I'm still in the process of setting up my ROS, I am getting an error message when i run