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
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.
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