Skip to content

Commit b3299bd

Browse files
miwojclgvaz
andauthored
Update INSTALL.md (airctic#841)
* Update INSTALL.md Update INSTALL.md with troubleshooting guide for `Failed building wheel for pycocotools` * updates indentation Co-authored-by: Lucas Vazquez <[email protected]>
1 parent 6578ed3 commit b3299bd

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

docs/INSTALL.md

+23
Original file line numberDiff line numberDiff line change
@@ -119,3 +119,26 @@ Check the installation by running:
119119
```
120120
nvcc --version
121121
```
122+
123+
### Error: Failed building wheel for pycocotools
124+
If you encounter the following error, when installation process is building wheel for pycocotools:
125+
```
126+
unable to execute 'gcc': No such file or directory
127+
error: command 'gcc' failed with exit status 1
128+
```
129+
Try installing gcc with:
130+
```
131+
sudo apt install gcc
132+
```
133+
Check the installation by running:
134+
```
135+
gcc --version
136+
```
137+
It should return something similar:
138+
```
139+
gcc (Ubuntu 9.3.0-17ubuntu1~20.04) 9.3.0
140+
Copyright (C) 2019 Free Software Foundation, Inc.
141+
This is free software; see the source for copying conditions. There is NO
142+
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
143+
```
144+
After that try installing icevision again.

0 commit comments

Comments
 (0)