问题:tensorboard:找不到命令

时间:2018-01-08 04:17:42

标签: python-3.x tensorflow tensorboard

我的环境:

$ pip show tensorflow
Name: tensorflow
Version: 1.4.1
Summary: TensorFlow helps the tensors flow
Home-page: https://www.tensorflow.org/
Author: Google Inc.
Author-email: opensource@google.com
License: Apache 2.0
Location: /home/pc/.local/lib/python2.7/site-packages
Requires: tensorflow-tensorboard, mock, enum34, protobuf, wheel, backports.weakref, six, numpy

当我尝试运行 tensorboard 时,终端中没有找到。

1 个答案:

答案 0 :(得分:3)

我不确定您使用的是什么操作系统,但我在使用Ubuntu 17.10。

安装tensorflow还会在~/.local/bin中安装tensorboard的可执行版本。但是为了通过从命令行调用它来执行此文件,需要有一个指向目录/usr/bin内的可执行文件的符号链接。出于某种原因,安装tensorflow并不会自动为您完成。

我通过使用此命令手动创建符号链接来解决此问题:

sudo ln -s ~/.local/bin/tensorboard /usr/bin