What is the official way to download Tensoboard with conda for Pytorch?

I was going through the tutorial https://pytorch.org/docs/stable/tensorboard.html and it seemed it had the command using pip but I use conda. I would like to avoid issue in the future. Is:

conda install tensorboard

really all I need to do? I couldn’t find docs from pytorch confirming this.

Try with

conda install -c conda-forge tensorboard 

how is that different?