chldydgh4687 / 00Self-Linux_trial_and_error

Linux & DeepLearning
0 stars 0 forks source link

[Solved]caffe_ImportError: No module named caffe #15

Open chldydgh4687 opened 4 years ago

chldydgh4687 commented 4 years ago

다른 에러가 아니고

$ make all
$ make pycaffe 

까지 완벽하게 진행되었을 때 python 에서 import가 안되는 경우이다.

ERROR

import caffe
Traceback (most recent call last):
File "", line 1, in
ImportError: No module named caffe

python 에서 caffe를 못찾을 경우일 가능성이 크다.

chldydgh4687 commented 4 years ago

https://github.com/BVLC/caffe/issues/263

chldydgh4687 commented 4 years ago

위의 문제의 답을 참고하여 따라 진행하면 된다.

# in caffe root dir
make all
make pycaffe
make distribute
# make dir for custom python modules, install caffe
mkdir ~/python
mv distribute/python/caffe ~/python
# set PYTHONPATH (this should go in your .bashrc or whatever
PYTHONPATH=${HOME}/python:$PYTHONPATH