face_recognition icon indicating copy to clipboard operation
face_recognition copied to clipboard

face_recognition reports version as 1.3.0 and 1.2.3

Open jc508 opened this issue 4 years ago • 1 comments

face_recognition reports version as 1.3.0 and 1.2.3 this occurs on windows 10 and Jetson Nano (jetpack 4.6)

asking pip it reports 1.3.0

>pip3 show face_recognition
Name: face-recognition
Version: 1.3.0
Summary: Recognize faces from Python or from the command line
...

in a python program

import dlib
print('dlib.DLIB_USE_CUDA = ' + str(dlib.DLIB_USE_CUDA))
print('dlib version = ' + dlib.__version__ )
print('dlib compiled = ' + dlib.__time_compiled__)
import face_recognition   
print('face_recognition.__version__ = ' + face_recognition.__version__ )

dlib.DLIB_USE_CUDA = True dlib version = 19.22.0 dlib compiled = Jul 10 2021 14:26:39 face_recognition.version = 1.2.3

is this consistant? I hope I haven't tangled versions

jc508 avatar Nov 15 '21 01:11 jc508

I have the problem too. even I installed using conda. install from source, using pip.

HuidongTian avatar Jan 17 '22 22:01 HuidongTian