(unicode error) 'unicodeescape' codec can't decode bytes - string with '\u'

后端 未结 4 828
一个人的身影
一个人的身影 2020-12-31 00:00

Writing my code for Python 2.6, but with Python 3 in mind, I thought it was a good idea to put

from __future__ import unicode_literals

at t

4条回答
  •  无人及你
    2020-12-31 00:35

    For me this issue related to version not up to date, in this case numpy

    To fix :

    conda install -f numpy
    

提交回复
热议问题