当我尝试从tensorboard
启动jupyter notebook
时,出现以下错误。由于conda environment
仅安装在我的环境中,因此我正在使用tensorflow
并使用特定于环境的内核。我在做什么错了?
错误:
%tensorboard --logdir logs
ERROR: Failed to launch TensorBoard (exited with -6).
Contents of stderr:
[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):
编辑
即使我尝试从终端(在conda env
内部)启动,我仍然遇到问题:
tensorboard --logdir = 'logs/'
[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):
Abort trap: 6
答案 0 :(得分:4)
我找到了以下解决方案。显然,这是在运行macOS Catalina
时发生的特定问题,可以通过切换到protobuf version 3.8.0
来解决。因此,基本上卸载tensorflow
和protobuf
并用protobuf = 3.8.0
重新安装。我找到了这个答案here,请查看该答案以获取更多信息。
答案 1 :(得分:1)
conda update protobuf
为我解决了该问题。我认为您也可以使用pip升级,但是我没有尝试