我在打开tensorboard时遇到错误。这是我的代码:
import tensorflow as tf
a = tf.constant(5,name = 'input_a')
b = tf.constant(3,name = 'input_b')
c = tf.multiply(a,b,name='mul_c')
d = tf.add(a,b,name='add_d')
e = tf.add(c,d,name = 'add_e')
with tf.Session() as sess:
output = sess.run(e)
print(output)
writer = tf.summary.FileWriter('path/to/log',tf.get_default_graph())
writer.close()
这是命令:
tensorboard --logdir=path/to/log
这是错误:
文件" c:\ programdata \ anaconda3 \ lib \ runpy.py",第85行,在_run_code中 exec(代码,run_globals)
文件" C:\ ProgramData \ Anaconda3 \ Scripts \ tensorboard.exe__main __。py",第5行,中
文件" c:\ programdata \ anaconda3 \ lib \ site-packages \ tensorboard \ main.py",第36行,中
来自tensorboard.plugins.audio import audio_plugin
文件" c:\ programdata \ anaconda3 \ lib \ site-packages \ tensorboard \ plugins \ audio \ audio_plugin.py",第27行,中
来自tensorboard import plugin_util
文件" c:\ programdata \ anaconda3 \ lib \ site-packages \ tensorboard \ plugin_util.py",第21行,在中 进口漂白剂 文件" c:\ programdata \ anaconda3 \ lib \ site-packages \ bleach__init __。py",第14行,中
来自html5lib.sanitizer导入HTMLSanitizer
文件" c:\ programdata \ anaconda3 \ lib \ site-packages \ html5lib \ sanitizer.py",第7行,在中 来自.tokenizer导入HTMLTokenizer
文件" c:\ programdata \ anaconda3 \ lib \ site-packages \ html5lib \ tokenizer.py",第17行,在中 来自.inputstream导入HTMLInputStream
文件" c:\ programdata \ anaconda3 \ lib \ site-packages \ html5lib \ inputstream.py",第9行,中
来自.constants导入编码,ReparseException
ImportError:无法导入名称'编码'
答案 0 :(得分:9)
我得到了同样的错误并修复了它。显然,html5lib
存在问题,但 mrry 的建议无法解决,因为一条消息会告诉您已经安装了最新版本。
相反,请运行:
pip install html5lib==1.0b8
有关此问题的更多信息,请访问:https://github.com/xhtml2pdf/xhtml2pdf/issues/318。
答案 1 :(得分:1)
我和Anaconda有同样的问题。这对我有用:
pip uninstall html5lib
conda install -c anaconda html5lib
pip install html5lib==1.0b10
答案 2 :(得分:0)
我遇到了同样的问题,我通过安装python 3.7.2而不是3.7解决了该问题。
在安装3.7.2之前,我还删除了目录C:\Users\Your_user_name\appdata\local\programs\python
中3.7后面的python文件。