使用 conda install 安装 Keras 包

时间:2023-03-25
本文介绍了使用 conda install 安装 Keras 包的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我已经在服务器上安装了 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

这篇关于使用 conda install 安装 Keras 包的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

上一篇:诗歌如何处理二进制依赖关系?(尤其是 numpy) 下一篇:如何重命名 conda 环境?

相关文章

最新文章