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
* Move installation instructions to subpage
Apparently, having the build instructions so prominent on the main page
seems to motivate people to build from source instead of installing the
binary packages. This change simplifies the main repo page in order to
show how to install and quickstart directly, linking to the full instructions
from our sphinx doc.
* More explicit copy_paste example
This example should be ready-to-go when using the URSim example.
Copy file name to clipboardExpand all lines: README.md
+10-58Lines changed: 10 additions & 58 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -89,8 +89,11 @@ users an overview of the current released state.
89
89
90
90
For getting started, you'll basically need three steps:
91
91
92
-
1.**Install the driver** (see below). You can either install this driver from binary packages or build it from source. We recommend a
93
-
binary package installation unless you want to join development and submit changes.
92
+
1.**Install the driver**
93
+
```bash
94
+
sudo apt-get install ros-rolling-ur
95
+
```
96
+
See the [installation instructions](https://docs.ros.org/en/ros2_packages/rolling/api/ur_robot_driver/installation/installation.html) for more details and source-build instructions.
94
97
95
98
2.**Start & Setup the robot**. Once you've installed the driver, [setup the
@@ -110,65 +113,14 @@ binary package installation unless you want to join development and submit chang
110
113
documentation](https://docs.ros.org/en/ros2_packages/rolling/api/ur_robot_driver/usage.html) for
111
114
details.
112
115
113
-
4. Unless started in [headless mode](https://docs.ros.org/en/ros2_packages/rolling/api/ur_robot_driver/ROS_INTERFACE.html#headless-mode): Run the external_control program by **pressing `play` on the teach pendant**.
114
-
115
-
### Install from binary packages
116
-
1.[Install ROS2](https://docs.ros.org/en/rolling/Installation/Ubuntu-Install-Debians.html). This
117
-
branch supports only ROS2 Rolling. For other ROS2 versions, please see the respective
118
-
branches.
119
-
2. Install the driver using
120
-
```
121
-
sudo apt-get install ros-${ROS_DISTRO}-ur
122
-
```
123
-
124
-
### Build from source
125
-
Before building from source please make sure that you actually need to do that. Building from source
126
-
might require some special treatment, especially when it comes to dependency management.
127
-
Dependencies might change from time to time. Upstream packages (such as the library) might change
128
-
their features / API which require changes in this repo. Therefore, this repo's source builds might
129
-
require upstream repositories to be present in a certain version as otherwise builds might fail.
130
-
Starting from scratch following exactly the steps below should always work, but simply pulling and
131
-
building might fail occasionally.
132
-
133
-
1.[Install ROS2](https://docs.ros.org/en/rolling/Installation/Ubuntu-Install-Debians.html). This
134
-
branch supports only ROS2 Rolling. For other ROS2 versions, please see the respective
135
-
branches.
136
-
137
-
Once installed, please make sure to actually [source ROS2](https://docs.ros.org/en/rolling/Tutorials/Beginner-CLI-Tools/Configuring-ROS2-Environment.html#source-the-setup-files) before proceeding.
138
-
139
-
3. Make sure that `colcon`, its extensions and `vcs` are installed:
6. When consecutive pulls lead to build errors it is possible that you'll have to build an upstream
162
-
package from source, as well. See the [detailed build status](ci_status.md). When the binary builds are red, but
163
-
the semi-binary builds are green, you need to build the upstream dependencies from source. The
164
-
easiest way to achieve this, is using the repos file:
122
+
4. Unless started in [headless mode](https://docs.ros.org/en/ros2_packages/rolling/api/ur_robot_driver/ROS_INTERFACE.html#headless-mode): Run the external_control program by **pressing `play` on the teach pendant**.
You can either install this driver from binary packages as shown above or build it from source. We
5
+
recommend a binary package installation unless you want to join development and submit changes.
6
+
7
+
Install from binary packages
8
+
----------------------------
9
+
10
+
1. `Install ROS2 <https://docs.ros.org/en/rolling/Installation/Ubuntu-Install-Debians.html>`_. This
11
+
branch supports only ROS2 Rolling. For other ROS2 versions, please see the respective branches.
12
+
2. Install the driver using
13
+
14
+
.. code-block:: bash
15
+
16
+
sudo apt-get install ros-${ROS_DISTRO}-ur
17
+
18
+
19
+
Build from source
20
+
-----------------
21
+
22
+
Before building from source please make sure that you actually need to do that. Building from source
23
+
might require some special treatment, especially when it comes to dependency management.
24
+
Dependencies might change from time to time. Upstream packages (such as the library) might change
25
+
their features / API which require changes in this repo. Therefore, this repo's source builds might
26
+
require upstream repositories to be present in a certain version as otherwise builds might fail.
27
+
Starting from scratch following exactly the steps below should always work, but simply pulling and
28
+
building might fail occasionally.
29
+
30
+
1. `Install ROS2 <https://docs.ros.org/en/rolling/Installation/Ubuntu-Install-Debians.html>`_. This
31
+
branch supports only ROS2 Rolling. For other ROS2 versions, please see the respective branches.
32
+
33
+
Once installed, please make sure to actually `source ROS2 <https://docs.ros.org/en/rolling/Tutorials/Beginner-CLI-Tools/Configuring-ROS2-Environment.html#source-the-setup-files>`_ before proceeding.
34
+
35
+
3. Make sure that ``colcon``, its extensions and ``vcs`` are installed:
0 commit comments