File size: 1,682 Bytes
7eb3f10 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 |
# Error Catching
I have recorded the errors I encountered during the installation. If you have any questions, please feel free to open an issue.
- PyRender error.
```
# please add following to bashrc:
export DISPLAY=:0
export MESA_GL_VERSION_OVERRIDE=4.1
export PYOPENGL_PLATFORM=egl
```
- libGL error: failed to load driver: swrast
```
conda install -c conda-forge gcc
```
- torch.multiprocessing.spawn.ProcessExitedException: process 0 terminated with signal SIGKILL
```
pip install h5py==3.3.0
```
- PyYAML (>=5.1.*)
```
pip install setuptools==61.1.0
```
- ERROR: Could not build wheels for mask2former, which is required to install pyproject.toml-based projects
```
See https://github.com/NVlabs/ODISE/issues/19#issuecomment-1592580278
```
- wandb 'run = wi.init()' error
```
pip install wandb==0.14.0
```
- ImportError: cannot import name 'get_num_classes' from 'torchmetrics.utilities.data'
```
pip install torchmetrics==0.6.0
```
- [glm/glm.hpp no such file or directory](https://github.com/GuanxingLu/ManiGaussian/issues/3)
```
sudo apt-get install libglm-dev
```
- The call failed on the V-REP side.
```
pip uninstall rlbench
# then follow the instruction to reinstall the correct RLBench version please
cd third_party/RLBench
pip install -r requirements.txt
python setup.py develop
```
- libEGL warning: failed to open /dev/dri/renderD128: Permission denied
```
# Ref: https://github.com/google-deepmind/dm_control/issues/214
sudo apt install libnvidia-gl-470-server
```
Maybe a simple `chown' or `chmod' also work.
You can also refer to [GNFactor's error catching](https://github.com/YanjieZe/GNFactor/blob/main/docs/ERROR_CATCH.md) for more error types. |