Skip to content

Commit 8267343

Browse files
committed
Add a note about pip dependency installation
1 parent dcd48e6 commit 8267343

File tree

1 file changed

+17
-1
lines changed

1 file changed

+17
-1
lines changed

README.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,20 @@
22

33
Tutorial source code for the TurtleBot 4.
44

5-
Tutorials are available in the [TurtleBot 4 User Manual](https://turtlebot.github.io/turtlebot4-user-manual/tutorials/).
5+
Tutorials are available in the [TurtleBot 4 User Manual](https://turtlebot.github.io/turtlebot4-user-manual/tutorials/).
6+
7+
## Installing OpenAI Pip packages on Ubuntu 24.04
8+
9+
On Ubuntu 24.04, `rosdep` cannot globally install Pip packages by default. If you encounter errors installing dependencies, you may need to add
10+
```
11+
# Allow rosdep to install system-wide pip packages
12+
[install]
13+
break-system-packages = true
14+
```
15+
to `/etc/pip.conf` or
16+
```
17+
export PIP_BREAK_SYSTEM_PACKAGES=1
18+
```
19+
to `$HOME/.bashrc`.
20+
21+
Alternatively, you can set up a `venv` and install Pip packages manually without using `rosdep`.

0 commit comments

Comments
 (0)