Cant Install Tensorflow 2.2.0rc0 In Ubuntu With Github Actions Inside Setup.py
When i try to install tensorflow>=2.2.0rc0 from setup.py running python setup.py install from a Github Actions Workflow, the output sendme this: Searching for tensorflow>=2.2
Solution 1:
The issue is with an outdated setuptools
version. Since 2.0, tensorflow
only ships wheels with the manylinux2010
tag on Linux. setuptools
has added support for manylinux2010
in 42.0.0, so upgrading setuptools
will resolve the issue:
$ pip install setuptools>=42.0.0
Post a Comment for "Cant Install Tensorflow 2.2.0rc0 In Ubuntu With Github Actions Inside Setup.py"