Reputation: 1736
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
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