Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
M
maskrcnn
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
人工智能
maskrcnn
Commits
b5de47b7
Unverified
Commit
b5de47b7
authored
Oct 26, 2018
by
Francisco Massa
Committed by
GitHub
Oct 26, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add note about GCC < 4.9 (#38)
parent
3d37c350
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
0 deletions
+19
-0
INSTALL.md
INSTALL.md
+1
-0
TROUBLESHOOTING.md
TROUBLESHOOTING.md
+18
-0
No files found.
INSTALL.md
View file @
b5de47b7
...
@@ -6,6 +6,7 @@
...
@@ -6,6 +6,7 @@
-
cocoapi
-
cocoapi
-
yacs
-
yacs
-
matplotlib
-
matplotlib
-
GCC >= 4.9
-
(optional) OpenCV for the webcam demo
-
(optional) OpenCV for the webcam demo
...
...
TROUBLESHOOTING.md
View file @
b5de47b7
...
@@ -27,3 +27,21 @@ which has a summary of the solution. Basically, CUDA 9.0 is not compatible with
...
@@ -27,3 +27,21 @@ which has a summary of the solution. Basically, CUDA 9.0 is not compatible with
This means that
`maskrcnn-benchmark`
has not been properly installed.
This means that
`maskrcnn-benchmark`
has not been properly installed.
Refer to https://github.com/facebookresearch/maskrcnn-benchmark/issues/22 for a few possible issues.
Refer to https://github.com/facebookresearch/maskrcnn-benchmark/issues/22 for a few possible issues.
Note that we now support Python 2 as well.
Note that we now support Python 2 as well.
## Segmentation fault (core dumped) when running the library
This probably means that you have compiled the library using GCC < 4.9, which is ABI incompatible with PyTorch.
Indeed, during installation, you probably saw a message like
```
Your compiler (g++ 4.8) may be ABI-incompatible with PyTorch!
Please use a compiler that is ABI-compatible with GCC 4.9 and above.
See https://gcc.gnu.org/onlinedocs/libstdc++/manual/abi.html.
See https://gist.github.com/goldsborough/d466f43e8ffc948ff92de7486c5216d6
for instructions on how to install GCC 4.9 or higher.
```
Follow the instructions on https://gist.github.com/goldsborough/d466f43e8ffc948ff92de7486c5216d6
to install GCC 4.9 or higher, and try recompiling
`maskrcnn-benchmark`
again, after cleaning the
`build`
folder with
```
rm -rf build
```
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment