"rqt_graph" for Ros Development Studio

Hello Everyone,
I am trying to learn Path planning course from the ros construct. Link “https://www.youtube.com/redirect?q=http%3A%2F%2Fwww.theconstructsim.com%2Fconstruct-learn-develop-robots-using-ros%2Frobotigniteacademy_learnros%2Fros-courses-library%2Fros-courses-ros-navigation-in-5-days%2F&v=zDUaazmSukM&redir_token=QUFFLUhqbGJDcFRjdVNXeFp6WnhHcExoa0tndllNNENFZ3xBQ3Jtc0tsVXVHOGFuNlZUeThrMFJZaXVxNDJUUGxYZ1h3QXZjN1lCdzc5aWFiNkY3Uy1UVHd0WE1iSHRRemowd1BIanB2ZGIwTVo3ZTJTZi15T2hfOVhKd3drWEI3WEpSY053aUNVVW5hTzdCbGtfM1NuVmdrZw%3D%3D&event=video_description

Everything is going good but I need to see graphic of the connection of all rosnodes, rostopic and all. The command for graph is “rqt_graph”, as I tried this command in terminal i did not see anything. Could someone please suggest me the right command for showing Graph in Ros Develop Studio.
Thanks in advance.

Hey @ros.MINING,

You need to do the following:

  1. Get roscore running, if not already, in the background:
nohup roscore &
  1. Run rqt_graph:
rqt_graph
  1. Open Graphical Tools from the tools menu to see the graph.

thank you so much for your guidence