tensorflow、pandas、dask、numexpr 版本兼容问题解决方案

在使用tensorflow的CuDNNLSTM、tensorboard功能跑程序时,如出现好多错误,以下列出我所出现的几个问题:

AttributeError: module ‘pandas’ has no attribute ‘computation’,

AttributeError:  module 'numexpr' has no attribute '__version__',

AttributeError:  module 'pandas' has no attribute 'core',

attributeerror: module 'pandas.core.computation' has no attribute 'expressio'

具体解决方案,在这里记录下:

    上述问题都是版本不兼容所导致的,选择合适的版本就好了。

    作者尝试的一套版本是:

    tensorflow–gpu: 1.12.0   pandas: 0.23.0   dask: 0.17.5    numexpr : 2.6.5

作者所用的命令如下(仅供参考):

pip install -U tensorflow-gpu==1.12.0 --user

pip install -U pandas==0.23.0 --user

pip install -U numexpr==2.6.5 --user

pip install -U dask==0.17.5 --user

 

你可能感兴趣的:(tensorflow、pandas、dask、numexpr 版本兼容问题解决方案)