Home > database >  Can't install Tensrflow
Can't install Tensrflow

Time:11-24

I'm a beginner in Deep Learning and NLP stream. I was trying to install Tensorflow but it is giving me an error. Can anyone please help me how to solve this? This is the error I'm getting

I was watchig an YouTube video for Toxic Comment Classification and thought should try that out for better practice. After creating an enviroment for the file I triedd to install Tensorflow but it threw this error. I updated my Anaconda, Updated python to 3.11 and pip to 22.3 but still it is not working.

CodePudding user response:

Welcome to Stack Overflow!!

Have you tried installing each package indivually?

Like this

pip install tensorflow
pip install tensorflow-gpu

And so on

CodePudding user response:

I ran your CLI commands from the picture separately as-well. The error you are getting is from tensorflow-gpu command. I've found a link for you, from where you can learn about it. [link]

  • Related