tensorboard安装错误
1尝试阶段 Dell 32位电脑,原有安装Anaconda,
conda create -n tensorflow python=3.6
activate tensorflow
pip install --ignore-installed --upgrade tensorflow 结果显示找不到符合匹配的tensorflow版本
2查找资料 发现tensorflow没有32位版本 lenovo 64位
conda create -n tensorflow python=3.6
activate tensorflow
pip install --ignore-installed --upgrade tensorflow 安装tensorflow成功 tensorboard --logdir="\path\to\log" 显示html5lib错误 cannot import name as ReparseException
3入坑开始 询问安装成功的同学,可能是路径问题,修改路径还是不可以
根据错误提示,搜索,可是并没有人有同样的错误,只有windows系统有个Reparse point怀疑自己电脑是否安装这个,介于过程不太懂,先放弃。
既然是html5lib中的问题,怀疑html5lib的版本,删除html5lib工具包,重新安装,还是不行
既然是Reparse,解析方向的问题,安装BF4,结果不行。
最后,重新安装Anaconda,改用python3.5版本
conda create -n tensorflow python=3.5
activate tensorflow
pip install --ignore-installed --upgrade tensorflow 安装tensorflow成功 tensorboard --logdir="path\to\log"成功打开 改用代码,重新生成日志,又不可以了 问题可能是anaconda版本太高,重新下载4.2.0版本,最后发现根本找不到对应的tensorflow,或者就是tensorflow版本高于anaconda
4结局篇 重新安装python3.5,和前面一样成功打开已生成的tensorboard,但对于刚生成的日志打不开,显示错误。
最后偶然打开tensorboard --help
转换tensorboard打开格式。
tensorboard --logdir name:path 成功运行。
成功代码:
conda create -n tensorflow python=3.6
activate tensorflow
pip install --ignore-installed --upgrade tensorflow 安装tensorflow成功 tensorboard --logdir name:"\path\to\log"