无法 运行 tflearn

Not able to run tflearn

当我运行

    import tflearn

在我的 python3 解释器中。

我收到以下错误。

    Traceback (most recent call last):
    File "<stdin>", line 1, in <module>
    File "/home/abc/app/neural_network/tflearn.py", line 2, in 
    <module>
    from tflearn.layers.conv import conv_2d,max_pool_2d
    ImportError: No module named 'tflearn.layers'; 'tflearn' is not a package

我有 tensorflow 版本 1.2.1,我已经安装了 tflearn。

不要将您的文件命名为 python 包(在本例中为 tflearn),因为 python 将使用您的文件,因为它是一个包并且所有导入都将失败。

使用与包同名的脚本会隐藏真实的包(假设已安装)。这就是为什么会出现这样的错误。