tango-2
tango-2

Reputation: 94

How can handle tensorflow

I got an error while installing tensorflow 2 error is:

ERROR: tf-nightly 2.2.0.dev20200129 has requirement gast==0.3.3, but you'll have gast 0.2.2 which is incompatible.

enter image description here

and then I wrote pip install tf-nightly

enter image description here

Upvotes: 1

Views: 9262

Answers (1)

Saurav Joshi
Saurav Joshi

Reputation: 414

Dependency needs to be fulfilled: You may try doing:

pip install --upgrade pip
pip install gast==0.2.2
pip install tensorflow

Upvotes: 1

Related Questions