파이썬 로그
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
동작이 된다!
반응형