tensorboard 报错IOerror: Errno22 invalid argument的解决

问题的原因是python 的版本问题,3.6不支持tensorboard,要换成3.5或者3.7

python 3.7在Anaconda中没有,比较麻烦,所以大多选择3.5

直接创建环境:

conda create -n tensorflow python=3.5

再重新安装 tensorflow:

超级快的方法

pip install tensorflow -i http://mirrors.aliyun.com/pypi/simple/ --trusted-host mirrors.aliyun.com

再用tensorboard --logdir logs就可以了!

你可能感兴趣的:(tensorflow,tensorboard)