TF 2.0beta1 had support for the manylinux1 tag which allowed me to successfully install it.
TF 2.0rc1 switched to the manylinux2010 tag which is not supported on my Debian installation with pip 18.1 and rc1 cannot be installed.
https://pypi.org/simple/tensorflow/ :
tensorflow-2.0.0b1-cp36-cp36m-manylinux1_x86_64.whl
tensorflow-2.0.0rc0-cp36-cp36m-manylinux2010_x86_64.whl
python3 -c "import wheel.pep425tags as w; print(w.get_supported())" | tr '\n' '\0' | sed -E 's/\),/),\n/g'
[('cp36', 'cp36m', 'linux_x86_64'),
('cp36', 'abi3', 'linux_x86_64'),
('cp36', 'none', 'linux_x86_64'),
('cp35', 'abi3', 'linux_x86_64'),
('cp34', 'abi3', 'linux_x86_64'),
('cp33', 'abi3', 'linux_x86_64'),
('cp32', 'abi3', 'linux_x86_64'),
('cp36', 'none', 'any'),
('cp3', 'none', 'any'),
('cp35', 'none', 'any'),
('cp34', 'none', 'any'),
('cp33', 'none', 'any'),
('cp32', 'none', 'any'),
('cp31', 'none', 'any'),
('cp30', 'none', 'any'),
('py3', 'none', 'linux_x86_64'),
('py36', 'none', 'any'),
('py3', 'none', 'any'),
('py35', 'none', 'any'),
('py34', 'none', 'any'),
('py33', 'none', 'any'),
('py32', 'none', 'any'),
('py31', 'none', 'any'),
('py30', 'none', 'any')]
I'm installing TF on Debian 10 with python 3.6:
Debian 4.19.37-5+deb10u1rodete2 (2019-08-06 > 2018) x86_64 GNU/LinuxTF 2.0beta1 had support for the manylinux1 tag which allowed me to successfully install it.
TF 2.0rc1 switched to the
manylinux2010tag which is not supported on my Debian installation with pip 18.1 and rc1 cannot be installed.Can TF not require upgrading pip to install?