1

I had install TensorFlow using pip and it has been installed successfully but when I am trying to import it is giving me an error "ImportError: No module named '_pywrap_tensorflow_internal" Failed to load the native TensorFlow runtime.

How can I fix it?

Error Screenshot here

thisisjaymehta
  • 584
  • 1
  • 10
  • 24
Loop Assembly
  • 846
  • 7
  • 16

1 Answers1

0

Use python version Python 3.8.8 or above :

pip install --user virtualenv

Activate your virtual enviroment and type the command in your console

pip install tensorflow
pip3 install tensorflow

Tensorflow package is of something around 200mb or above so be patient and let it to be install

Loop Assembly
  • 846
  • 7
  • 16