Skip to content Skip to sidebar Skip to footer

How To Import Caffe Module In Python?

I have build .dll of _caffe.cpp on Windows (Release, x64). I changed extension .dll to .pyd and trying to import it in python: import caffe File '\caffe-master\python\caffe\__in

Solution 1:

You need to add Python Caffe to PYTHONPATH. For example: export PYTHONPATH=$PYTHONPATH:/home/username/caffe/python

Solution 2:

For windows :

Adding /caffe/Build/x64/Release/pycaffe to system path(path) works for me, and I think the best way to do it is :

  1. New a system variable : PYTHON_PKG = /caffe/Build/x64/Release/pycaffe;
  2. Include PYTHON_PKG in path : path = %PYTHON_PKG%; %OtherDirs%

After I did this, I get PKG missing google.internal, then I did pip install google.internal in CMD. It works.

Solution 3:

Once you have a compiled and built caffe, try

echo'export PYTHONPATH=/path/to/caff-dir/python'

Also, you may need to run following:

pip install -r requirement.txt

Post a Comment for "How To Import Caffe Module In Python?"