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
When I am writing or debugging a node in Jupyter Notebook + Jupyter Ros, I often need to run the edited version. I've been restarting the kernel in Jupyter as a way to try to get it to run the edited node, but I am not sure that works or is reliable. I've also tried killing roscore and restarting it. I am not sure yet what works and what doesn't. What's the recommended way to do this?
The text was updated successfully, but these errors were encountered:
I agree, jupyter-ros still has some rough edges.
Restarting the kernel will definitely kill the process + node.
However, the usual way of working in Jupyter is to re-run a cell – which doesn't really map that well to ROS development. We might need to improve the handling of jupyter-ros in this regard.
Do you have some toy code to share along which we could try to come up with better workflows?
Yes I do have toy code, simple examples which are a "transcript" of some of the tf2 tutorials on the ros.org wiki.
For me the confusion is that there's no way to tell whether a node is still running so I will re-run a cell and nothing will happen. I assume because the node is still running from before. The other smaller confusion was just that I didn't realize that I needed to have roscore launched separately.
As I am sure you know, the notebook paradigm that jupyter-ros follows is very different from what we aer used to: no separate terminal tabs, no .launch files, what is the current directory that is active while a notebook is running, etc.
So from my beginners viewpoint I feel like would be useful is:
A way to have roscore run without having to launch it in a terminal (== roscore)
When a jr.subcribe is re-issued on the same topic, don't throw an error, but handle it correctly
A way to know which nodes are running at any point (== rosnodes list)
A way to start and restart and check status of running node from within notebook
When I am writing or debugging a node in Jupyter Notebook + Jupyter Ros, I often need to run the edited version. I've been restarting the kernel in Jupyter as a way to try to get it to run the edited node, but I am not sure that works or is reliable. I've also tried killing roscore and restarting it. I am not sure yet what works and what doesn't. What's the recommended way to do this?
The text was updated successfully, but these errors were encountered: