我自己得代码是

import tensorflow as tf
import sys

结果ubuntu16.04带得python2.7报错

'ascii' codec can't decode byte 0xe5 in position 22: ordinal not in range(128)

所以,解决方案如下:

import sys
reload(sys)
sys.setdefaultencoding('utf8')

具体问题具体分析吧

posted on 2018-05-30 10:58  Fiona_Y  阅读(155)  评论(0编辑  收藏  举报