Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ModelZoo
ResNet50_tensorflow
Commits
4289fc16
"tools/python/vscode:/vscode.git/clone" did not exist on "09a9ad6d1ef4a4d5455ce5a0883ea6267bf93f37"
Commit
4289fc16
authored
Oct 24, 2017
by
Andre Araujo
Browse files
Adding troubleshooting information for DELF code
parent
7f5bdcd4
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
25 additions
and
0 deletions
+25
-0
research/delf/EXTRACTION_MATCHING.md
research/delf/EXTRACTION_MATCHING.md
+10
-0
research/delf/INSTALL_INSTRUCTIONS.md
research/delf/INSTALL_INSTRUCTIONS.md
+15
-0
No files found.
research/delf/EXTRACTION_MATCHING.md
View file @
4289fc16
...
@@ -55,3 +55,13 @@ python match_images.py \
...
@@ -55,3 +55,13 @@ python match_images.py \
The image
`matched_images.png`
is generated and should look similar to this one:
The image
`matched_images.png`
is generated and should look similar to this one:


### Troubleshooting
#### `matplotlib`
`matplotlib`
may complain with a message such as
`no display name and no
$DISPLAY environment variable`
. To fix this, one option is add the line
`backend : Agg`
to the file
`config/matplotlib/matplotlibrc`
. On this problem,
see the discussion
[
here
](
https://stackoverflow.com/questions/37604289/tkinter-tclerror-no-display-name-and-no-display-environment-variable
)
.
research/delf/INSTALL_INSTRUCTIONS.md
View file @
4289fc16
...
@@ -81,3 +81,18 @@ python -c 'import delf'
...
@@ -81,3 +81,18 @@ python -c 'import delf'
should just return without complaints. This indicates that the DELF package is
should just return without complaints. This indicates that the DELF package is
loaded successfully.
loaded successfully.
### Troubleshooting
#### Python version
Installation issues may happen if multiple python versions are mixed. The
instructions above assume python2.7 version is used; if using python3.X, be sure
to use
`pip3`
instead of
`pip`
, and all should work.
#### `pip install`
Issues might be observed if using
`pip install`
with
`-e`
option (editable
mode). You may try out to simply remove the
`-e`
from the commands above. Also,
depending on your machine setup, you might need to run the
`pip install`
command
without
`sudo`
at the beginning.
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