导入Sklearn时无法订购的类型错误



i在窗口上安装了numpy(1.12.0b1),scipy(0.18)。我还安装了Sci-kit。当我在Python控制台中写下" Import Sklearn"时,它给出了这样的错误:如果np_version<(1、12、0):TypeError:不可订购的类型:str()<int()问题是什么?

问题在版本编号上已经存在,因此也许您可以尝试在sklearn文件夹中修改fixs.py。在第32行中的try之后添加这些脚本:

if not (x.isdigit()):
    x='0'

,您的代码将是:

def _parse_version(version_string):
version = []
for x in version_string.split('.'):
    try:
        if not (x.isdigit()):
            x='0'
        version.append(int(x))
        #print(x)
    except ValueError:
        # x may be of the form dev-1ea1592
        version.append(x)
return tuple(version)

相关内容

  • 没有找到相关文章

最新更新