0

this my code enter image description here this result enter image description here

python = 3.10.0

keras = 2.6.0

tensorfow = 2.3.0

streamlit = 1.11.0

i want to run streamlit app

  • Does this answer your question? [can not import tensorflow](https://stackoverflow.com/a/73621205/19290081) – Jamiu S. Nov 05 '22 at 22:00
  • Please don't provide code for your problem as code block in text format and not as a picture. – Fabian Nov 08 '22 at 07:25

1 Answers1

0

your tensorflow is to old or keras to new. maybe try:

pip uninstall keras
pip install keras==2.2.1

to install an older keras version

Finn Meyer
  • 89
  • 4