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
The workspace is managed using the [pixi](https://pixi.sh) package manager. This allows us to have reproducible builds and easy user space dependency management similar to tools like `uv` or `cargo`. This also means that no system wide ROS installation or superuser privileges are required to install or run the code.
17
+
16
18
Full step-by-step instructions for installing the Bit-Bots software stack and ROS 2 can be found in our documentation [here](https://doku.bit-bots.de/meta/manual/tutorials/install_software_ros2.html).
17
19
18
20
19
-
Run the following command to install all dependencies and clone all necessary repositories. Make sure you have [just](https://just.systems/) and correct ROS 2 version installed.
21
+
Run the following command inside this repository to build the workspace. All dependencies will be installed automatically. Make sure you have [pixi](https://pixi.sh) installed. A few optional proprietary dependencies will be needed for full functionality, see the documentation for details.
20
22
21
23
```shell
22
-
just install
24
+
pixi run build
23
25
```
24
26
25
-
## Building
27
+
## Using the workspace
26
28
27
-
To build the code, run
29
+
To activate the workspace run the following command in the terminal you want to use:
28
30
29
31
```shell
30
-
just build
32
+
pixi shell
31
33
```
32
34
33
-
and source the setup file with
35
+
alternatively, you can run individual commands inside the workspace without activating the shell:
0 commit comments