1. Pycaffe를 설치해 보자
make pycaffe
cd python
cat requirememts.txt
for req in $(cat requirements.txt); do sudo pip install $req; done
--> 위 명령어 대로 설치하면 python3.4 환경에 설치되어서
--> 이렇게 응용해본다. for req in $(cat requirements.txt); do conda install $req; done
python
import caffe 가 잘 실행된다.
python path 설정도 잊지 말자
헐 make matcaffe가 실행되지 않아서 한참 반나절을 헤맸는데
어이없게도 build 디렉토리가 아니라 caffe 루트 디렉토리에서 실행하니 된다.
참고하시기 바람
2. matcaffe를 설치해 보자
PATH지정도 잘 해주었는데 오류가 났다.
I was having the same problem when trying to run other program, and found a solution on StackOverflow.
Basically, just do the following commands: Firstly, install:
sudo apt-get install libstdc++6
This should already be installed by default, but try it anyway. If it doesn't solve it, just do the following:
sudo add-apt-repository ppa:ubuntu-toolchain-r/test
sudo apt-get update
sudo apt-get upgrade
sudo apt-get dist-upgrade
I didn't perform the "dist-upgrade" command, but the ones before solved it for me
위와 같이 해서 해결했더니
드뎌 컴파일이 되었다.
'컴퓨터이야기' 카테고리의 다른 글
온톨로지 (0) | 2018.03.09 |
---|---|
시그모이드함수 미분 (0) | 2018.02.05 |
Caffe 설치하기 (0) | 2017.11.08 |
openface repository (0) | 2017.11.02 |
openface 테스트 (0) | 2017.11.02 |