File tree Expand file tree Collapse file tree 1 file changed +17
-1
lines changed Expand file tree Collapse file tree 1 file changed +17
-1
lines changed Original file line number Diff line number Diff line change 22
33Tutorial 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 ` .
You can’t perform that action at this time.
0 commit comments