Hi, I am trying to build a docker image from dustynv/l4t-pytorch and I would like to use insightface, Does anyone you know where I could find it ? (sorry this is my first post and I don’t know how to properly format).
Here are my requirements : python 3.11 compatible versions
# numpy<2.0 required for InsightFace ABI compatibility
Hi, thanks for your reply ! I tried it but at some point it says
> E: Package 'libgl1-mesa-glx' has no installation candidate
I noticed that the image you mentioned is running with Ubuntu 24 (noble) while I am running Ubuntu 22.04 on my Jetson Orin Nano for which there is a libgl1-mesa-glx.
Do you think it is safe to move my host to 24.04?
Thanks again,
Dominique
NB: Just found this : Installing **libgl1** and **libglx-mesa0** instead of **libgl1-mesa-glx** will result in equivalent behaviour and should work on **Ubuntu 18.04** and newer.
Could you recommend some face recognition package working with pytorch and using the GPU? I have implemented InsightFace with CPU only but so slow; I am just trying to find the best combination… (I think it is important to notice that It is face recognition for still pictures not real-life camera!)
Hi, in the end we had to add pip install --no-cache-dir --prefer-binary **--index-url https://pypi.org/simple** -r requirements.txt and we changed for facenet-pytorch instead of InsightFace…
Let’s hope that it will work!
Thanks
Yes it worked but I think that the key change was --index-url https://pypi.org/simple
Sorry for the delay to reply but I am more interested in the Cuda memory problem at the moment . When starting my facial recognition process I have always to clear the cache otherwise I have messages about not able to allocate memory…
Thanks anyway for asking !