ImportError: Нет модуля с именем absl.флаги

#python #bazel #tensorboard

Вопрос:

Я пытаюсь построить из исходного кода, используя команду bazel run tensorboard -- --logdir path/to/logs , как показано в файле README, но я продолжаю получать следующую ошибку:

 ERROR:  (local directory)/tensorboard/plugins/debugger_v2/tf_debugger_v2_plugin/BUILD:115:8: Executing genrule //tensorboard/plugins/debugger_v2/tf_debugger_v2_plugin:generate_dtypes failed: (Exit 1): bash failed: error executing command /bin/bash -c ... (remaining 1 argument(s) skipped)  Use --sandbox_debug to see verbose messages from the sandbox Traceback (most recent call last):  File "(local directory)/sandbox/darwin-sandbox/944/execroot/org_tensorflow_tensorboard/bazel-out/darwin-opt-exec-50AE0418/bin/tensorboard/plugins/debugger_v2/tf_debugger_v2_plugin/extract_dtypes_from_python.runfiles/org_tensorflow_tensorboard/tensorboard/plugins/debugger_v2/tf_debugger_v2_plugin/extract_dtypes_from_python.py", line 21, in lt;modulegt;  from tensorboard.compat.tensorflow_stub import dtypes  File "(local directory)/sandbox/darwin-sandbox/944/execroot/org_tensorflow_tensorboard/bazel-out/darwin-opt-exec-50AE0418/bin/tensorboard/plugins/debugger_v2/tf_debugger_v2_plugin/extract_dtypes_from_python.runfiles/org_tensorflow_tensorboard/tensorboard/compat/tensorflow_stub/__init__.py", line 25, in lt;modulegt;  from . import app # noqa  File "(local directory)/sandbox/darwin-sandbox/944/execroot/org_tensorflow_tensorboard/bazel-out/darwin-opt-exec-50AE0418/bin/tensorboard/plugins/debugger_v2/tf_debugger_v2_plugin/extract_dtypes_from_python.runfiles/org_tensorflow_tensorboard/tensorboard/compat/tensorflow_stub/app.py", line 21, in lt;modulegt;  from . import flags  File "(local directory)/sandbox/darwin-sandbox/944/execroot/org_tensorflow_tensorboard/bazel-out/darwin-opt-exec-50AE0418/bin/tensorboard/plugins/debugger_v2/tf_debugger_v2_plugin/extract_dtypes_from_python.runfiles/org_tensorflow_tensorboard/tensorboard/compat/tensorflow_stub/flags.py", line 25, in lt;modulegt;  from absl.flags import * # pylint: disable=wildcard-import ImportError: No module named absl.flags  

Я попытался установить absl-py через pip, а также удалить и переустановить его, но, похоже, не могу решить эту проблему. Как мне решить эту проблему?