Pycharm下tensorboard加载失败 --tensorboard 不是内部或外部命令,也不是可运行的程序

tensorboard 不是内部或外部命令,也不是可运行的程序

    • 问题
    • 解决
    • 检查
    • 注意

问题

在使用Terminal 加载tensorboard时,显示:

E:\U_Net>tensorboard
'tensorboard' 不是内部或外部命令,也不是可运行的程序
或批处理文件。

解决

  1. 检查是否有tensorboard.exe,有的话,加入path
  2. 没有的话,检查是否仅安装tensorflow-gpu。如果没安装tensorflow,可以自行在项目的解释器中安装。

检查

E:\U_Net>tensorboard --logdir=E:\U_Net
TensorFlow installation not found - running with reduced feature set.
Serving TensorBoard on localhost; to expose to the network, use a proxy or pass --bind_all
TensorBoard 2.3.0 at http://localhost:6006/ (Press CTRL+C to quit)

问题解决。

注意

tensorbaord的版本可以和tensorflow-gpu版本不一致,不一致并不影响使用,不需要对gpu版本进行改动

你可能感兴趣的:(tensorflow,python)