everfree31

Tensorboard 오류 해결 본문

파이썬 로그

Tensorboard 오류 해결

에바후리 2020. 5. 21. 23:51
반응형

맥, 파이썬 3.7, 텐서플로우 2.0

 

로그를 확인하기 위해 Tensorboard 를 실행하였는데 아래와 같은 오류를 뿜는다.

 

[libprotobuf ERROR external/com_google_protobuf/src/google/protobuf/descriptor_database.cc:393] Invalid file descriptor data passed to EncodedDescriptorDatabase::Add().

[libprotobuf FATAL external/com_google_protobuf/src/google/protobuf/descriptor.cc:1367] CHECK failed: GeneratedDatabase()->Add(encoded_file_descriptor, size): 

libc++abi.dylib: terminating with uncaught exception of type google::protobuf::FatalException: CHECK failed: GeneratedDatabase()->Add(encoded_file_descriptor, size): 

zsh: abort      tensorboard

 

오류를 해결하기 위해

photobuf 를 제거하고, 다시 인스톨 한다.

 

pip uninstall photobuf

pip install photo buf

 

동작이 된다!

 

반응형

'파이썬 로그' 카테고리의 다른 글

Colab 한글 패치  (0) 2020.10.20
pygame 설치 문제 (feat. sld)  (0) 2020.09.21
JPype 설치시 에러  (0) 2020.09.21
맥 파이썬 웹크롤링 _ssl.c:1108 에러  (0) 2020.06.09
Pythonista 3 모듈 설치  (3) 2020.03.25
Comments