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

amar's profile - activity

2019-09-01 15:50:12 -0500 received badge  Famous Question (source)
2019-09-01 15:50:12 -0500 received badge  Notable Question (source)
2017-06-22 06:58:51 -0500 marked best answer How to set the third party python package on ROS?

I have installed googlemaps, numpy and polyline using pip install command on ubuntu 16.04. As I run the code using sudo python code.py, it works. But, When I use rospy in code and run it as rosrun package code.py the code doesn't work. It shows problem in connecting googlemap API. I want to include these python packages(googlemaps..) on ROS so that the code works on ROS. How to do it?

2017-06-22 06:55:03 -0500 commented question How to set the third party python package on ROS?

Thanks!! I solved the problem. I tried again by creating a catkin workspace and it works using rosrun.

2017-06-22 05:55:52 -0500 commented question How to set the third party python package on ROS?

echo $PYTHONPATH results /home/pi/catkin_ws/devel/lib/python2.7/dist-packages:/opt/ros/kinetic/lib/python2.7/dist-packag

2017-06-22 04:54:45 -0500 received badge  Popular Question (source)
2017-06-22 02:43:30 -0500 commented question How to set the third party python package on ROS?

python- 2.7.12 . I installed those packages using pip install command. I want to run the python script using rosrun so t

2017-06-22 02:12:11 -0500 edited answer How to set the third party python package on ROS?

to run a pyhton script i use sudo. Without sudo i get errors as ros can't find the pyhton packages which i installed usi

2017-06-22 02:12:04 -0500 edited answer How to set the third party python package on ROS?

to run a pyhton script i use sudo. Without sudo i get errors as ros can't find the pyhton packages which i installed usi

2017-06-22 01:59:39 -0500 received badge  Editor
2017-06-22 01:59:39 -0500 edited answer How to set the third party python package on ROS?

to run a pyhton script i use sudo. Without sudo i get errors as ros can't find the pyhton packages which i installed usi

2017-06-22 01:59:32 -0500 edited answer How to set the third party python package on ROS?

to run a pyhton script i use sudo. Without sudo i get errors as ros can't find the pyhton packages which i installed usi

2017-06-22 00:49:30 -0500 answered a question How to set the third party python package on ROS?

to run a pyhton script i use sudo. Without sudo i get errors as ros can't find the pyhton packages which i installed usi

2017-06-21 17:22:43 -0500 asked a question How to set the third party python package on ROS?

How to set the third party python package on ROS? I have installed googlemaps, numpy and polyline using pip install comm