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

neoDEH's profile - activity

2019-05-14 11:04:10 -0500 received badge  Nice Question (source)
2015-12-11 15:21:08 -0500 received badge  Notable Question (source)
2015-12-01 16:06:50 -0500 received badge  Famous Question (source)
2015-09-26 15:24:10 -0500 received badge  Notable Question (source)
2015-09-26 15:24:10 -0500 received badge  Famous Question (source)
2015-03-26 03:28:35 -0500 received badge  Student (source)
2015-02-13 02:51:35 -0500 received badge  Popular Question (source)
2014-12-28 11:22:21 -0500 answered a question I am having problem in Creating a ROS Package

You have to provide more information on what you are doing. Provide as much info as u can. Yours looks like it was typed out in a hurry.

2014-12-28 11:17:26 -0500 received badge  Enthusiast
2014-12-26 13:37:36 -0500 answered a question Why does ROS installation fails on 64bit Linux

i think your answer is in section 1.4 http://wiki.ros.org/indigo/Installati...

2014-12-26 13:33:18 -0500 asked a question help with rosrun image_transport

I have been following the tutorial http://wiki.ros.org/image_transport/T... But when i ran rosrun image_transport my_publisher path/to/some/image.jpg it says

[rosrun] Couldn't find executable named my_publisher below /opt/ros/indigo/share/image_transport

i think there is a mistake in http://wiki.ros.org/image_transport/T... where after git clone it says mkdir src which is already there.

Thanks

2014-12-02 12:49:24 -0500 received badge  Famous Question (source)
2014-12-02 12:49:19 -0500 received badge  Notable Question (source)
2014-11-02 15:29:58 -0500 received badge  Notable Question (source)
2014-10-23 07:40:02 -0500 received badge  Popular Question (source)
2014-10-23 07:39:37 -0500 received badge  Popular Question (source)
2014-10-07 03:34:14 -0500 received badge  Notable Question (source)
2014-10-06 14:31:09 -0500 received badge  Popular Question (source)
2014-10-06 10:01:26 -0500 received badge  Supporter (source)
2014-10-06 10:01:15 -0500 commented answer Arch Linux support for ROS

ok, sorry am new to the site.

2014-10-06 09:04:16 -0500 answered a question ROS Arch linux wiki question

Thanks was useful.

2014-10-06 08:46:46 -0500 answered a question Arch Linux support for ROS

Thanks for the links

2014-10-06 08:45:31 -0500 received badge  Popular Question (source)
2014-10-04 12:22:59 -0500 asked a question Problem with catkin_make in Arch_linux

Hi

I followed the instructions in http://wiki.ros.org/indigo/Installation/Arch.

If i typed catkin_make i get

Exhibt A :

[neo@arch ros2]$ indigo
[neo@arch ros2]$ catkin_make
Base path: /home/neo/ros2
Source space: /home/neo/ros2/src
Build space: /home/neo/ros2/build
Devel space: /home/neo/ros2/devel
Install space: /home/neo/ros2/install
####
#### Running command: "cmake /home/neo/ros2/src -DCATKIN_DEVEL_PREFIX=/home/neo/ros2/devel -DCMAKE_INSTALL_PREFIX=/home/neo/ros2/install" in "/home/neo/ros2/build"
####
-- Using CATKIN_DEVEL_PREFIX: /home/neo/ros2/devel
-- Using CMAKE_PREFIX_PATH: /opt/ros/indigo
-- This workspace overlays: /opt/ros/indigo
-- Using PYTHON_EXECUTABLE: /usr/bin/python
-- Using default Python package layout
-- Could NOT find PY_em (missing:  PY_EM) 
CMake Error at /opt/ros/indigo/share/catkin/cmake/empy.cmake:29 (message):
  Unable to find either executable 'empy' or Python module 'em'...  try
  installing the package 'python-empy'
Call Stack (most recent call first):
  /opt/ros/indigo/share/catkin/cmake/all.cmake:146 (include)
  /opt/ros/indigo/share/catkin/cmake/catkinConfig.cmake:20 (include)
  CMakeLists.txt:52 (find_package)


-- Configuring incomplete, errors occurred!
See also "/home/neo/ros2/build/CMakeFiles/CMakeOutput.log".
Invoking "cmake" failed

But if i do the following catkin_make works

Exhibt B :

[neo@arch ros2]$ indigo
[neo@arch ros2]$ catkin_make -DPYTHON_EXECUTABLE=/usr/bin/python2 -DPYTHON_INCLUDE_DIR=/usr/include/python2.7 -DPYTHON_LIBRARY=/usr/lib/libpython2.7.so
Base path: /home/neo/ros2
Source space: /home/neo/ros2/src
Build space: /home/neo/ros2/build
Devel space: /home/neo/ros2/devel
Install space: /home/neo/ros2/install
####
#### Running command: "cmake /home/neo/ros2/src -DCATKIN_DEVEL_PREFIX=/home/neo/ros2/devel -DCMAKE_INSTALL_PREFIX=/home/neo/ros2/install -DPYTHON_EXECUTABLE=/usr/bin/python2 -DPYTHON_INCLUDE_DIR=/usr/include/python2.7 -DPYTHON_LIBRARY=/usr/lib/libpython2.7.so" in "/home/neo/ros2/build"
####
-- Using CATKIN_DEVEL_PREFIX: /home/neo/ros2/devel
-- Using CMAKE_PREFIX_PATH: /opt/ros/indigo
-- This workspace overlays: /opt/ros/indigo
-- Found PythonInterp: /usr/bin/python2 (found version "2.7.8") 
-- Using PYTHON_EXECUTABLE: /usr/bin/python2
-- Using default Python package layout
-- Found PY_em: /usr/lib/python2.7/site-packages/em.pyc  
-- Using empy: /usr/lib/python2.7/site-packages/em.pyc
-- Using CATKIN_ENABLE_TESTING: ON
-- Call enable_testing()
-- Using CATKIN_TEST_RESULTS_DIR: /home/neo/ros2/build/test_results
-- Found gtest: gtests will be built
-- Using Python nosetests: /usr/bin/nosetests-2.7
-- catkin 0.6.9
-- BUILD_SHARED_LIBS is on
-- Configuring done
-- Generating done
CMake Warning:
  Manually-specified variables were not used by the project:

    PYTHON_INCLUDE_DIR
    PYTHON_LIBRARY


-- Build files have been written to: /home/neo/ros2/build
####
#### Running command: "make -j4 -l4" in "/home/neo/ros2/build"
####

The problem is as i understand is because of the package empy. Also i see that in the log output of Exhibit A The PYTHON_EXECUTABLE: /usr/bin/python and not as PYTHON_EXECUTABLE: /usr/bin/python2 which is seen in Exhibit B.

How can this be ?

2014-10-04 11:22:12 -0500 asked a question ROS Arch linux wiki question

Hi

I have a question about the following peice of code in http://wiki.ros.org/indigo/Installation/Arch

# ROS
indigo() {
  source /opt/ros/indigo/setup.bash
  export ROS_PACKAGE_PATH=/path/to/your/your/package/path:$ROS_PACKAGE_PATH
  export PYTHONPATH=/opt/ros/indigo/lib/python2.7/site-packages:$PYTHONPATH
  export PKG_CONFIG_PATH="/opt/ros/indigo/lib/pkgconfig:$PKG_CONFIG_PATH"
  alias python=/usr/bin/python2

  # Gazebo
  source /usr/share/gazebo/setup.sh
}

In this i did not understand the environment variable ROS_PACKAGE_PATH. Is is needed ? What is the role of it ?