Keras seperate pip package

Hi everyone,

I saw the following tweet last week about splitting Keras into a seperate pip package.
Does this mean that, on my local virtual environment I need to do ‘pip install --upgrade keras’ in order to get the latest tf.keras?
Up until now, keras is updated as part of my:

  • pip install --upgrade tensorflow"
    or
  • pip install --upgrade tf-nighly"

Thanks!
Fadi

It is still ok to use:

pip install --upgrade tf-nighly

2 Likes

pip install -U tf-nightly will auto update the keras-nightly as the dependency.

When tf 2.6 releases, pip install -U tensorflow will update keras as the dependency.

1 Like

Also it is already ok to install pip install tensorflow==2.6.0rc1

1 Like

Thanks @Bhack & @Scott_Zhu