is keras not available for python 3.8 ?
keras is wonderful deep learning framework. I just upgrade python 3.7 to 3.8 . then I got the installation error.
UnsatisfiableError: The following specifications were found
to be incompatible with the existing python installation in your environment:
Specifications:
keras -> python[version='>=3.5,<3.6.0a0|>=3.6,<3.7.0a0']
Your python: python=3.8
If python is on the left-most side of the chain, that's the version you've asked for.
When python appears to the right, that indicates that the thing on the left is somehow
not available for the python version you are constrained to. Note that conda will not
change your python version to a different minor version unless you explicitly specify
that.
strange, I'm running python 3.8 and I'm able to use it properly.
Just install tensorflow, and use tensorflow.keras.<>
Most functions will work great. In some cases, though you may have to use
compact V1 of tf
tf.Keras documentation:-
https://www.tensorflow.org/api_docs/python/tf/keras
Also if there is any specific issue in code, just put it up on github,
raise issue and share link
On Tue, Aug 11, 2020 at 10:00 PM Avenze notifications@github.com wrote:
strange, I'm running python 3.8 and I'm able to use it properly.
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
https://github.com/keras-team/keras/issues/14186#issuecomment-672071379,
or unsubscribe
https://github.com/notifications/unsubscribe-auth/AIGS53UBS523EA36WPXPFKTSAFW2DANCNFSM4PZFLBPQ
.
--
ANKUR
[image: Picture]
this didn't work for me, I am using python through miniconda. I just downgraded into python 3.7. I think I need to wait for more time for python 3.8 support.
thank you
I just ran into this issue with conda install -y keras, but it works fine with pip install tensorflow and pip install keras. I think the issue is that the conda formulas for keras and tensorflow specify Python < 3.7:
UnsatisfiableError: The following specifications were found
to be incompatible with the existing python installation in your environment:
Specifications:
- keras -> python[version='>=2.7,<2.8.0a0|>=3.5,<3.6.0a0|>=3.6,<3.7.0a0']
But that's not a Keras issue, it's something that would need to be tested and updated in the conda formula.
I think.
thank you everyone . I solved it using just pip install tensorflow and pip install keras
Most helpful comment
thank you everyone . I solved it using just pip install tensorflow and pip install keras