Closed thomas-riccardi closed 6 years ago
Hi @thomas-riccardi thanks. This pre-release has the fix, could you give it a try? https://github.com/drnikolaev/caffe/tree/caffe-0.17
Hi @drnikolaev , your branch indeed removes the django dependency, fixing my initial issue.
However, it does not address the other points:
image
could also be removeddocker/
?
Some context
image
anddjango
topython/requirements.txt
.django
was needed: the commit message only talks aboutimage
, and a grep inpython/
reveals nodjango
usage.image
usage was removed by commit https://github.com/NVIDIA/caffe/commit/5eab61dc7b3a5852529bea711aa4c67f9f097714#diff-2d462ed1996a384d046687b756701360L10: replaced by pillow. (see https://github.com/NVIDIA/caffe/commit/5eab61dc7b3a5852529bea711aa4c67f9f097714#diff-d86c2fdd3201fda455d5aee979a57a9cL12 for usage, and https://github.com/NVIDIA/caffe/commit/5eab61dc7b3a5852529bea711aa4c67f9f097714#diff-2d462ed1996a384d046687b756701360L10 for pillow installation); butimage
is still installed, probably for nothing.Issue
Installing
django>=1.11.5
makespip
installdjango 2
, which requirespython >= 3.4.0
, which is not available in the various installation Dockerfiles (python2 is installed):This breaks (at least) the build of digits when using nvcaffe 0.16.5.
Remarks/cleanup TODO?
python/requirements.txt
, else limit to<2
:django>=1.11.5,<2
image
inpython/requirements.txt
: always use pillow