How do I install TensorFlow's tensorboard?

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

How do I install TensorFlow\'s tensorboard?

13条回答
  •  一向
    一向 (楼主)
    2020-12-24 05:49

    It is better not to mix up the virtual environments or perform installation on the root directory. Steps I took for hassle free installation are as below. I used conda for installing all my dependencies instead of pip. I'm answering with extra details, because when I tried to install tensor board and tensor flow on my root env, it messed up.

    • Create a virtual env

      conda create --name my_env python=3.6

    • Activate virtual environment

      source activate my_env

    • Install basic required modules

      conda install pandas

      conda install tensorflow

    • Install tensor board

      conda install -c condo-forge tensor board

    Hope that helps

提交回复
热议问题