J'ai eu beaucoup de mal à essayer d'installer Caffe sur mon Mac, je vais donc le laisser en note. Environnement: OSX 10.11.1 (El Captain) MacBook Pro 13 pouces, début 2011 (<-Je dois bientôt en acheter un nouveau.) Installer uniquement en mode CPU.
J'ai fait référence à l'article suivant. ① http://qiita.com/Kajiyu/items/e8ad0ccd878328a21e8a ② http://d.hatena.ne.jp/shu223/20160103/1452000295
J'ai procédé à l'installation en me référant à l'article ci-dessus.
$ make runtest
J'ai procédé sans problème, mais
$ import caffe
C'est devenu un défaut de segmentation: 11.
J'ai examiné Makefile.config en référence à l'article (2), mais cela n'a pas été corrigé.
PYTHON_INCLUDE := /usr/local/Cellar/python/2.7.11/Frameworks/Python.framework/Versions/2.7/include/python2.7
/usr/local/lib/python2.7/site-packages/numpy/core/include/
PYTHON_LIB := /usr/local/Cellar/python/2.7.11/Frameworks/Python.framework/Versions/2.7/lib
$ cmake .
En regardant le journal de
-- Python:
-- Interpreter : /usr/local/bin/python2.7 (ver. 2.7.11)
-- Libraries : /usr/lib/libpython2.7.dylib (ver 2.7.10)
Et le paramètre de Makefile.config n'était pas reflété.
$ cmake . -DPYTHON_LIBRARY=/usr/local/Cellar/python/2.7.11/Frameworks/Python.framework/Versions/2.7/lib/libpython2.7.dylib
Et en spécifiant directement le chemin, c'est sûr
$ import caffe
C'est désormais possible.
Recommended Posts