How do I install TensorFlow's tensorboard?

前端 未结 13 1584
慢半拍i
慢半拍i 2020-12-24 05:25

How do I install TensorFlow\'s tensorboard?

13条回答
  •  我在风中等你
    2020-12-24 05:47

    If you're using the anaconda distribution of Python, then simply do:

     $❯ conda install -c conda-forge tensorboard 
    

    or

     $❯ conda install -c anaconda tensorboard 
    

    Also, you can have a look at various builds by search the packages repo by:

    $❯ anaconda search -t conda tensorboard
    

    which would list the channels and the corresponding builds, the supported OS, Python versions etc.,

提交回复
热议问题