Package Update

This commit is contained in:
2026-02-11 03:02:01 +00:00
parent 433ea76b8b
commit d3e72baeea
2 changed files with 19 additions and 0 deletions

View File

@@ -136,6 +136,24 @@ source activate_venv.sh
pip install pexpect future
```
source activate_venv.sh
pip install pexpect future
```
### Build Failed (Missing catkin_pkg)
**Symptoms:**
- `ModuleNotFoundError: No module named 'catkin_pkg'` within `package_xml_2_cmake.py`
- CMake configuration error at `ament_package_xml.cmake`
**Solution:**
This occurs when the virtual environment is missing ROS 2 build dependencies that are normally present in the system python but not in the venv.
```bash
source activate_venv.sh
pip install catkin_pkg
```
## WSL-Specific Issues
### Display Not Available

View File

@@ -11,6 +11,7 @@ opencv-contrib-python>=4.5.0,<4.9.0
# ROS 2 Python dependencies
empy>=3.3.4
lark>=1.1.1
catkin_pkg>=0.5.0
# Computer vision and scientific computing
scipy>=1.7.0,<1.12.0