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
Clarifications to the Windows Foxy Binary Install (ros2#851)
* Include PowerShell in Win Install's Env Setup section
* Cleared confusing wording around Win OpenSSL Install
* Update Win GraphViz installation instructions
* Use tab to include PowerShell equivalent + respect 1 sentence per line
* Sourcing ROS on PowerShell startup
* Update source file path to match windows install tutorial
Co-authored-by: Chris Lalancette <[email protected]>
* Replaced manual graphviz install with choco package
Co-authored-by: Binit Shah <[email protected]>
Co-authored-by: Chris Lalancette <[email protected]>
To run rqt_graph you need to `download <https://graphviz.gitlab.io/_pages/Download/Download_windows.html>`__ and install `Graphviz <https://graphviz.gitlab.io/>`__.
159
-
160
-
* The default installation path will be C:\Program Files (x86)\GraphvizX.XX\bin (Example: GraphvizX.XX → Graphviz2.38)
161
-
* Open cmd window as administrator and go the location C:\Program Files (x86)\GraphvizX.XX\bin and run the below command:
159
+
To run rqt_graph, you'll need `Graphviz <https://graphviz.gitlab.io/>`__.
162
160
163
161
.. code-block:: bash
164
162
165
-
dot.exe
166
-
167
-
* Go to the Control Panel → System and Security → System, and on the right side navigation panel, you will see the link Advanced systems settings.
168
-
* Once there in advance settings, a dialogue box will open which will show the button Environment Variables. Click on the button Environment Variables.
169
-
* Select the entry "Path" on the system variables section and add C:\Program Files (x86)\GraphvizX.XX\bin to the existing path.
170
-
* Click on Ok Button.
163
+
> choco install graphviz
171
164
172
165
Downloading ROS 2
173
166
-----------------
@@ -190,9 +183,19 @@ Environment setup
190
183
191
184
Start a command shell and source the ROS 2 setup file to set up the workspace:
192
185
193
-
.. code-block:: bash
186
+
.. tabs::
187
+
188
+
.. group-tab:: Command Prompt
189
+
190
+
.. code-block:: bash
191
+
192
+
> call C:\dev\ros2_foxy\local_setup.bat
193
+
194
+
.. group-tab:: PowerShell
195
+
196
+
.. code-block:: bash
194
197
195
-
> call C:\dev\ros2_foxy\local_setup.bat
198
+
>C:\dev\ros2_foxy\local_setup.ps1
196
199
197
200
It is normal that the previous command, if nothing else went wrong, outputs "The system cannot find the path specified." exactly once.
0 commit comments