DeepFlowest

[Darknet] OSerror: libdarknet.so:cannot open shared object file: no such file or directory 에러 해결 본문

에러 해결 모음

[Darknet] OSerror: libdarknet.so:cannot open shared object file: no such file or directory 에러 해결

Orange57 2021. 6. 3. 15:03
728x90
반응형
SMALL

. py 파일 실행할 때 다음과 같은 오류 남.

OSerror: libdarknet.so:cannot open shared object file: no such file or directory

 

==> make 할 때 libdarknet.so가 안 만들어졌거나 or 경로가 잘 못 설정되었기 때문.

 

1) Makefile 수정

Makefile에 들어가서 

LIBSO=1 수정 

2) make

$ make

다시 make 한 후, 

 

3) libdarknet.so 경로 수정

darknet.py 에 들어가서 

lib 경로 다음과 같이 입력

lib = CDLL(os.path.join(os.getcwd(), "libdarknet.so"), RTLD_GLOBAL)

 

다시 .py 파일 돌려보면 (ex. darknet_video.py) 정상 작동하는 것을 볼 수 있음.

728x90
반응형
LIST
Comments