Failed to load Tensorboard

后端 未结 2 1390
甜味超标
甜味超标 2021-01-23 17:53

ERROR: Failed to launch TensorBoard (exited with 1). Contents of stderr: Traceback (most recent call last): File \"/home/arshad/anaconda3/bin/tensorboard\", line 10, in s

相关标签:
2条回答
  • 2021-01-23 17:56

    In case it still doesn't work for you, what you need to do is upgrade your grpcio package with:

    pip install --upgrade grpcio 
    

    It should work fine.

    0 讨论(0)
  • 2021-01-23 18:20

    Initially, you have to activate the environment where tensorflow is installed using the below commands

    conda activate <environment_name>   or source activate <environment_name>
    

    then, run below tensorboard command by passing log_dir as parameter.

      tensorboard --log_dir <log directory name>
    

    For more details, run

    tensorboard -help
    
    0 讨论(0)
提交回复
热议问题