You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Instead of running forest grow <my_pkg> only once, I've to repeat that command after every changes in the python script. This has to be done before launching the node with rosrun <my_pkg> <my_script.py>
The text was updated successfully, but these errors were encountered:
The devel space is configured to access python scripts directly from the src. This means you don't need to rebuild every time your python code changes. With the install space, you would need to run catkin_make after every change.
As of now, Forest does not have a devel space and its install space behaves in the same way as catkin's: you would need to run forest grow after every change.
For sure, it would be useful to support an editable install for python scripts.
System Info
Report
In the
CMakeList.txt
I added the following statement in order to ensure that the python script gets installed properly:Instead of running
forest grow <my_pkg>
only once, I've to repeat that command after every changes in the python script. This has to be done before launching the node withrosrun <my_pkg> <my_script.py>
The text was updated successfully, but these errors were encountered: