Vitor Matos

Results 9 comments of Vitor Matos

@mgerdzhev I think this has been a issue with pyserial, Ubuntu 14.04 and its kernels. I usually also have that problem. My workaround is simply running `rosserial_python` with a dummy...

Just upgraded ROS Jade packages on 14.04, and now this problem also happens on Jade. Furthermore, it also happens even if messages are generated on other packages, prior to running...

I'm really confused about what is causing these issues, it worked fine for me before. I currently have two computers, 14.04 + Jade. One has ros-jade-catkin 0.6.18, and the other...

``` vmatos@vmatos:~/ros/rosserial_ard_ws$ apt-cache show ros-jade-rosserial Package: ros-jade-rosserial Version: 0.7.3-0trusty-20160805-133218-0700 ``` I can entirely reproduce the problem by checking out and compiling catkin 0.6.17, and then solve it by checking out...

Just narrowed it down to: https://github.com/ros/catkin/commit/b5ac581c807204b5333f9c29e4c1e22018ae0b88 I've looked at it a bit: https://github.com/vmatos/catkin/commit/24ceeef3715cc61f38190c81e0cf3197a88f0e7e#diff-d45f5a104dbd945efc89af62952ef042R175 From my understanding, because the `lib` folder of the workspace currently being built does not exist, it...

With catkin tools I have no better luck. I even have ``` add_dependencies(${PROJECT_NAME}_ros_lib ${PROJECT_NAME}_generate_messages) ``` but my project's messages target is not built before the `ros_lib` target. Although I may...

Yes, it will print "unable to compile message". But that does not solve the issue of finding my custom messages within the same package, on a 'not sourced' workspace. And...

Thank you @AnnMarieW I have tested with the rc3 you have provided. The `ModuleNotFoundError` remains. You can find in branch: https://github.com/vmatos/minimal_multipage_dispatcher/tree/dash-2.4.0rc3 Also in branch: https://github.com/vmatos/minimal_multipage_dispatcher/tree/pythonpath I try to work around...

Oh, But I did in the other branch. ``` dash.register_page(__name__+".another_home", layout=html.Div("App 1!"), path='/') dash.register_page( __name__+".very_important", layout=html.Div("Don't miss it! 1"), path="/important", order=0 ) ``` In branch https://github.com/vmatos/minimal_multipage_dispatcher/tree/pythonpath-2.4.0rc3 I tried the same...