-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
using a module that uses RobotOS.jl #52
Comments
by "standalone script" what so you mean exactly? As far as I can tell, you have to be in the scripts directory of a ros package. You also have to make sure that you pythonpath is set to same python instance as the ros system |
Hello tradeA, My ROS package is this https://github.com/gstavrinos/ez_pick_and_place. In the src directory is the to-be module, and in the example directory is the .jl file that should use it. Currently I am using (Also, keep in my mind that I am using the version that is currently in #48 in order to support julia-1.0.) Thanks for the interest, George |
It sounds like the module precompilation issue that was addressed by #47. Have you tried generating the message modules inside your package module instead of |
I tried it, but couldn't work it out. The way I bypassed it was by using |
Hey,
I am developing a julia module that uses RobotOS.jl internally. When I am running my module as a standalone script everything is working fine, but when I include my module via the
using
keyword, the messages (geometry_msgs) fail to compile. This problem is not present if I use theinclude
keyword. Any thoughts?Thanks,
George
The text was updated successfully, but these errors were encountered: