Skip to content Skip to sidebar Skip to footer

Python Interface Of Caffe: Error In "import Caffe"

I'm trying to run Caffe in it's Python interface. I've already run the command make pycaffe in the caffe directory and it worked fine. Now, when I run the command import caffe in t

Solution 1:

You need to add Python Caffe to PYTHONPATH. In your case:
export PYTHONPATH=$PYTHONPATH:/home/pras/caffe/python


Post a Comment for "Python Interface Of Caffe: Error In "import Caffe""