3

when i install keras on my conda environement it does not seem to install the latest version since i have 2.0.5 and itseems to be 2.0.8 (https://pypi.python.org/pypi/Keras)

when i run conda update keras i get the following error message :

# All requested packages already installed.
# packages in environment at /home/user/anaconda2/envs/conda_env:
#
keras                     2.0.5                    py36_0  

same problem when i try to install keras-vis but then it does not exist at all so i have to do a pip-install that create double packages in my environement

desertnaut
  • 57,590
  • 26
  • 140
  • 166
J.Zagdoun
  • 124
  • 1
  • 16

1 Answers1

5

Conda uses it's own repository of compiled binaries. The latest version available in the main channel "anaconda" is keras 2.0.5. If you use conda-forge you get access to 2.0.6.

Newer versions need to be installed over pip.

EDIT:

You can actually use this channel to get the newer version.

niid
  • 473
  • 4
  • 13
  • 2
    +1 good answer! However, one should not use pip to install packages into Conda environments. See: https://stackoverflow.com/a/45919845/2449192 – darthbith Oct 24 '17 at 15:55