inja: no work to do. ==> ninja -j4 -l4 in '/home/lsc/carto_ws/build_isolated/cartographer/install' ninja: error: '/usr/lib/x86_64-linux-gnu/libdl.so”', needed by 'cartographer_autogenerate_ground_truth', missing and no known rule to make it <== Failed to process package 'cartographer': Command '['ninja', '-j4', '-l4']' returned non-zero exit status 1. Reproduce this error by running: ==> cd /home/lsc/carto_ws/build_isolated/cartographer && ninja -j4 -l4 Command failed, exiting.
时间: 2024-02-12 09:03:54 浏览: 460
根据你提供的错误信息,似乎是缺少名为libdl.so的依赖项。你可以尝试在终端中使用以下命令解决此问题:
```
sudo apt-get install libdl-dev
```
这将安装缺少的依赖项。然后重新运行你的命令。
如果仍然存在问题,请尝试在终端中运行以下命令:
```
sudo apt-get update && sudo apt-get upgrade
```
这将更新你的系统并安装任何缺少的依赖项。然后重新运行你的命令。
相关问题
inja2.exceptions.TemplateNotFound: form.html
这个错误表示在使用 Jinja2 模板引擎时找不到名为 "form.html" 的模板文件。请确保在你的项目中存在名为 "form.html" 的模板文件,并且该文件存在于正确的位置。如果模板文件存在,可能是模板的搜索路径配置有误导致无法找到该文件。你可以检查一下模板搜索路径的设置,确保可以正确地找到该模板文件。
No matching distribution found for Jinjia2
It seems like you have misspelled the package name. The correct package name is "Jinja2" (with a capital "J" and lowercase "inja2"). Try running the installation command again with the correct package name:
```
pip install Jinja2
```
阅读全文