使用 conda install 安装 Keras 包

2022-01-10 00:00:00 python keras anaconda python-import

问题描述

我已经在服务器上安装了 Anaconda 软件包作为用户帐户,然后我通过 conda install keras 安装了 keras,但是安装后,当我运行 import keras 时,它引发了 no module names keras,有人可以帮忙吗?非常感谢!

I have installed Anaconda package on a server as a user account, then I installed keras by conda install keras,but after installation, when I run import keras, it raised no module names keras,anyone can help? thanks very much!


解决方案

一个解决方案可能是创建一个 conda 环境:

One solution could be creating a conda environment:

conda create -n keras python=3.5

现在激活它:

conda activate keras

并安装 keras:

(keras)$ conda install keras

试试看是否可行:

(keras)$ python
>>> import keras

相关文章