Reputation: 94
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.
and then I wrote pip install tf-nightly
Upvotes: 1
Views: 9262
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