I have installed Anaconda package on a server as a user account, then I installed keras by conda install keras,but after installation,
Anaconda
keras
conda install keras
One solution could be creating a conda environment:
conda create -n keras python=3.5
Now activate it:
conda activate keras
and install keras:
(keras)$ conda install keras
Try if it works:
(keras)$ python >>> import keras