Beta
Beta

Reputation: 1736

Install keras in Anaconda3 Ubuntu

I was trying to install keras in in anaconda in Ubuntu. I followed instuction from this site. All my packages are installed properly. Also in pip list I can see keras. But when I'm trying to import keras it's saying "no module called keras".

Can anyone please help me?

Upvotes: 2

Views: 1119

Answers (2)

vell001
vell001

Reputation: 66

first, you need switch conda env to your target_env

source activate target_env

second, use pip install keras

pip install keras

Upvotes: 3

Harvett
Harvett

Reputation: 178

I simply use conda install keras and it works for me.

Upvotes: 1

Related Questions