使用 conda install 安装 Keras 包

Installing Keras package with conda install(使用 conda install 安装 Keras 包)

本文介绍了使用 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 包的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本文标题为:使用 conda install 安装 Keras 包

基础教程推荐