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

ImportError: No module named 'em', Error

asked 2017-03-23 22:59:24 -0500

tomcattiger gravatar image

Hi,

I create a test package as tutorial using

catkin_create_pkg beginner_tutorials std_msgs rospy roscpp.

When I add a custom message, it comes error

[100%] Built target beginner_tutorials_generate_messages_lisp

Traceback (most recent call last):

File "/opt/ros/kinetic/share/gencpp/cmake/../../../lib/gencpp/gen_cpp.py", line 41, in <module>

import genmsg.template_tools

File "/opt/ros/kinetic/lib/python2.7/dist-packages/genmsg/template_tools.py", line 39, in <module>

import em

ImportError: No module named 'em'

beginner_tutorials/CMakeFiles/beginner_tutorials_generate_messages_cpp.dir/build.make:62: recipe for target '/home/arnoldx201/catkin_ws/devel/include/beginner_tutorials/Complex.h' failed

make[2]: * [/home/arnoldx201/catkin_ws/devel/include/beginner_tutorials/Complex.h] Error 1 CMakeFiles/Makefile2:1136: recipe for target 'beginner_tutorials/CMakeFiles/beginner_tutorials_generate_messages_cpp.dir/all' failed

make[1]: * [beginner_tutorials/CMakeFiles/beginner_tutorials_generate_messages_cpp.dir/all] Error 2

Makefile:138: recipe for target 'all' failed

make: * [all] Error 2

Invoking "make -j4 -l4" failed

When I use directly python --> import cm, there is no problem.

Has anyone met the same problem before? Thanks

edit retag flag offensive close merge delete

Comments

Hattest du eine Lösung für dein Problem gefunden?

Ich stehe momentan vor dem exakt gleichen Problem und komme nicht weiter :(

fettespferd gravatar image fettespferd  ( 2019-01-21 06:49:08 -0500 )edit

3 Answers

Sort by » oldest newest most voted
4

answered 2017-03-24 00:14:07 -0500

ahendrix gravatar image

Yes, other users have seen this before.

A quick search on this site for the title of your question turns us: http://answers.ros.org/question/25733... , http://answers.ros.org/question/23928... and http://answers.ros.org/question/22828... , all of which describe different causes for this error and possible solutions.

edit flag offensive delete link more

Comments

I had this same problem. The first link had the solution that solved it for me. I needed to install the python empy library. "pip install empy" and then "catkin_make" worked. Thanks!

mkelly66 gravatar image mkelly66  ( 2019-07-22 22:42:02 -0500 )edit
6

answered 2019-12-11 00:22:53 -0500

bobo_truth gravatar image

I have fixed this by running sudo apt-get install python3-empy

edit flag offensive delete link more

Comments

worked for me too :)

Lidor Shimoni gravatar image Lidor Shimoni  ( 2020-01-27 06:32:14 -0500 )edit

Worked for me too. THanks BUddy

Deepak_Kr_Yadav gravatar image Deepak_Kr_Yadav  ( 2020-02-21 08:24:47 -0500 )edit

Thank You. After many tried, the 'sudo apt-get install python3-empy' works.

Morna_Bot gravatar image Morna_Bot  ( 2020-05-18 03:38:47 -0500 )edit

Thank you! This solved the problem.

jlpm gravatar image jlpm  ( 2020-06-11 16:28:42 -0500 )edit
2

answered 2021-01-27 17:53:18 -0500

DoriNissenbaum gravatar image

updated 2021-01-29 06:11:54 -0500

I had the same issue, which also came in the frieghtening forms of:

"ModuleNotFoundError: No module named 'ament_package'"

and

"ModuleNotFoundError: No module named 'catkin_pkg'"

And I've already had all of the above packages installed - so unfortunately none of the above solutions helped.

What does solve it for me, though, if anyone else is having the same issue, is the following:

Apparently the cause for these errors is a conflict I have with the PATH variable that anaconda sets. Because I use my conda environment more than I use ROS (for now...), I didn't want to comment out the setting in ~/.bashrc as suggested here.

So instead, before running colcon build (and after deleting the ill-made folders, if they are there already, build, install and log under the ws root folder), I use the following curse:

export PATH="/opt/ros/foxy/bin:"$(echo $PATH | sed 's/^[^:]*://g' | sed 's/^[^:]*://g' | sed 's/^[^:]*://g' | sed 's/^[^:]*://g')

Which deletes any mentioning of anaconda in the current terminal's PATH variable, and allows the building to occur (I'm pretty sure there are more elegant ways to do it, so please free to add)

Using that curse - start with echo $PATH to see what it looks like, and then add these | sed 's/^[^:]*://g' commands that delete all the characters in the string from its beginning until they reach a ":". Just use echo $PATH | sed 's/^[^:]*://g' to see what you get. I added /opt/ros/foxy/bin: in the beggining of PATH but I'm not really sure about it. It worked for me, anyway.

For easier usage you can also create a .bash file that contains that line. I copied the line into ~/ROS2/update_path.bash and now before building I call . ~/ROS2/update_path.bash and it's working (use echo $PATH again just to see there is indeed no anaconda in the current PATH)

Hope it helps!

edit flag offensive delete link more

Question Tools

1 follower

Stats

Asked: 2017-03-23 22:59:24 -0500

Seen: 33,187 times

Last updated: Jan 29 '21