安装keras的坑--pip install安装成功后显示No model named keras

据说keras使用非常方便,安装使用下,之前安装tensorflow==1.3.0(这为后面埋了个坑。。。。)和不同版本的python
pip3 install keras
安装后import keras [1]
没问题哇,但是,运行代码后报错:No model named keras

find /  -name keras

发现安装到python3.5下面去了。。。。我用python3.6,重新安装,指定pip3路径,然后,还是。。。。
想着是不是keras版本不匹配tensorflow==1.3.0的原因,查看版本,

>>> import tensorflow
>>> print(tensorflow.__version__)
1.3.0
>>> import keras
/home/duhj/anaconda3/lib/python3.6/site-packages/h5py/__init__.py:34: FutureWarning: Conversion of the second argument of issubdtype from `float` to `np.floating` is deprecated. In future, it will be treated as `np.float64 == np.dtype(float).type`.
  from ._conv import register_converters as _register_converters
Using TensorFlow backend.
>>> print(keras.__version__)
2.2.2

将keras重装,

pip3.6 install keras==2.1.6

然后再测试lstm+cnn模型[2],运行成功。
安装keras的坑--pip install安装成功后显示No model named keras_第1张图片
Ref:
[1] https://keras-cn.readthedocs.io/en/latest/for_beginners/keras_linux/
[2] https://github.com/keras-team/keras

你可能感兴趣的:(keras)