When trying to install I get this error:
Collecting tensorflow==1.7 (from easyfacenet)
Could not find a version that satisfies the requirement tensorflow==1.7 (from easyfacenet) (from versions: 1.13.0rc1, 1.13.0rc2, 1.13.1, 1.14.0rc0, 1.14.0rc1, 1.14.0, 2.0.0a0, 2.0.0b0, 2.0.0b1)
No matching distribution found for tensorflow==1.7 (from easyfacenet)
pip install tensorflow==1.7.0
Collecting tensorflow==1.7.0
Could not find a version that satisfies the requirement tensorflow==1.7.0 (from versions: 1.13.0rc1, 1.13.0rc2, 1.13.1, 1.13.2, 1.14.0rc0, 1.14.0rc1, 1.14.0, 2.0.0a0, 2.0.0b0, 2.0.0b1)
No matching distribution found for tensorflow==1.7.0
Tensorflow v1.7 is not compatible with the most recent release of Python. It only works up to Python 3.6.x
There is a workaround for this by using a virtual environment:
install python virturalenv with pip pip install virtualenv (optionally for Win: pip install virtualenvwrapper-win
Download an older build of Python (e.g. 3.6.9)
C:\Python36\requirements.txt to install the correct version of scipy: scipy==1.1.0 (see issue #1060)virtualenv --python=*insert path to older python version* venvvenv\Scripts\activatepip install -r requirements.txthope this helps
Most helpful comment
Tensorflow v1.7 is not compatible with the most recent release of Python. It only works up to Python 3.6.x
There is a workaround for this by using a virtual environment:
install python virturalenv with pip
pip install virtualenv(optionally for Win:pip install virtualenvwrapper-winDownload an older build of Python (e.g. 3.6.9)
C:\Python36\requirements.txtto install the correct version of scipy:scipy==1.1.0(see issue #1060)virtualenv --python=*insert path to older python version* venvvenv\Scripts\activatepip install -r requirements.txthope this helps