Open silky opened 6 years ago
This is fixed in TensorBoard 1.8.0, see tensorflow/tensorboard#1111, so we just need to update the WORKSPACE dep on TensorBoard to 1.8.0.
I'm still seeing this. Using latest bazel + 1.8.0
I force the install of tensorflow to 1.8.0 - but can't shake the workspace dependency.
tried this to no avail.
For some reason - it comes up with TensorBoard 1.6.0a0. TensorBoard 1.6.0a0 at http://MAC-MBP161437.local:6006 (Press CTRL+C to quit)
http_archive(
name = "org_tensorflow_tensorboard",
sha256 = "a943c0242a07da4d445135ffc9a7c7cb987d9bd948ae733695bc16095dceec20",
strip_prefix = "tensorboard-2fdb2199553729a6c5b42b7eb0305a101b454add",
urls = ["https://github.com/tensorflow/tensorboard/archive/2fdb2199553729a6c5b42b7eb0305a101b454add.zip"],
)
digging deeper - solved this by dropping in the source code for tensorboard-1.8.0 into directory.
then switching the line in WORKSPACE file DELETE THIS _http_archive( name = "org_tensorflowtensorboard", sha256 = "....." )
to use the antipattern ADD THIS local_repository( name = "org_tensorflow_tensorboard", path = "tensorboard-1.8.0" )
when following the steps from the readme, after running the example i get:
i'm using the
tf-nightly
package for tensorflow, as recommended by the tensorboard repo itself: