2

对于 DeepDream 或其他深度学习项目,构建 Caffe 环境。

我为 PyCaffe 安装了所需的软件包,并将 PYTHONPATH 设置为 caffe/python。

但是,当我在 python 上导入 caffe 时:

import caffe

发生如下错误。如何解决这个问题?

Segmentation fault: 11
4

3 回答 3

1

你用的是mac吗?我很难在 mac 上制作 pycaffe,直到我意识到所有 mac 上都安装了本机 python,并且我使用的是我安装的另一个版本。在编译时,caffe 使用了本机 python 中的一些东西,以及其他 python 中的一些东西。我必须确保更改 makefile.config 文件中的所有相关路径并更改我的 bash 使用的 python。我也建议在虚拟环境中工作。 是一个很好的链接,可以帮助你,祝你好运!

于 2016-06-03T14:54:02.017 回答
1

自 2015 年以来,这已在Github issue中进行了讨论。主要原因是自制python和OS X系统python的冲突。

Homebrew为 OS X提供了一个很棒的解决方案:

$ python -V   # system Python interpreter
$ python2 -V  # Homebrew installed Python 2 interpreter
$ python3 -V  # Homebrew installed Python 3 interpreter (if installed)

所以解决方案是将所有python路径更改为python2。咆哮是我的 Makefile.config 相关:

# ...
# NOTE: this is required only if you will compile the python interface.
# We need to be able to find Python.h and numpy/arrayobject.h.
# PYTHON_INCLUDE := /usr/include/python2.7 \
#       /usr/lib/python2.7/dist-packages/numpy/core/include
# ------ For Homebrew installed python. Numpy path is added using python commands. 
PYTHON_INCLUDE := /usr/local/Cellar/python/2.7.14/Frameworks/Python.framework/Versions/2.7/include/python2.7

# We need to be able to find libpythonX.X.so or .dylib. ------ (Update Homebrew path)
# PYTHON_LIB := /usr/lib
# PYTHON_LIB := $(ANACONDA_HOME)/lib
PYTHON_LIB := /usr/local/Cellar/python/2.7.14/Frameworks/Python.framework/Versions/2.7/lib

# Homebrew installs numpy in a non standard path (keg only) ------ (python2 for brew instead of python for system)
PYTHON_INCLUDE += $(dir $(shell python2 -c 'import numpy.core; print(numpy.core.__file__)'))/include
PYTHON_LIB += $(shell brew --prefix numpy)/lib
# ...
于 2017-12-01T03:54:35.797 回答
0

如果没有名为 caffe 的模块出现错误,请尝试在 python 脚本中手动设置 python 路径

前任。导入系统

sys.path.insert(0, "/home/nviso/GitHub/caffe/distribute/python")

进口咖啡

这通常对我有用。手动将 caffe 或 python 路径添加到 .bashrc 应该也可以解决问题,尽管不确定,现在没有我的 Office PC 可以尝试:)

于 2016-02-17T18:20:30.810 回答