"vscode:/vscode.git/clone" did not exist on "b0d26199811d58166342fbe776c8f3dbc415e2cc"
Unverified Commit 43dde9d5 authored by Wenhao Wu's avatar Wenhao Wu Committed by GitHub
Browse files

[Enhance] Add FAQ for common problems (#333)

* add faq

* faq revised

* faq revised

* faq revised

* faq revised

* faq revised --- add title & add line to index.rst
parent 16790710
# FAQ
We list some potential troubles encountered by users and developers, along with their corresponding solutions. Feel free to enrich the list if you find any frequent issues and contribute your solutions to solve them. If you have any trouble with environment configuration, model training, etc, please create an issue using the [provided templates](https://github.com/open-mmlab/mmdetection3d/blob/master/.github/ISSUE_TEMPLATE/error-report.md) and fill in all required information in the template.
## MMCV/MMDet/MMDet3D Installation
- If you faced the error shown below when importing open3d:
``OSError: /lib/x86_64-linux-gnu/libm.so.6: version 'GLIBC_2.27' not found``
please downgrade open3d to 0.9.0.0, because the latest open3d needs the support of file 'GLIBC_2.27', which only exists in Ubuntu 18.04, not in Ubuntu 16.04.
- If you faced the error when importing pycocotools, this is because nuscenes-devkit installs pycocotools but mmdet relies on mmpycocotools. The current workaround is as below. We will migrate to use pycocotools in the future.
```shell
pip uninstall pycocotools mmpycocotools
pip install mmpycocotools
```
...@@ -33,6 +33,7 @@ Welcome to MMDetection3D's documentation! ...@@ -33,6 +33,7 @@ Welcome to MMDetection3D's documentation!
:caption: Notes :caption: Notes
benchmarks.md benchmarks.md
faq.md
.. toctree:: .. toctree::
:caption: API Reference :caption: API Reference
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment