johnwmillr / Facer

Simple (🤞) face averaging (🙂) in Python (🐍)
MIT License
80 stars 11 forks source link

Modul install on mac os 14.x #8

Closed Warniz closed 1 year ago

Warniz commented 3 years ago

Just wanted to give a heads up that the setup.py and installing as a modul does not work - at least not for me. Could not make numpy 1.6.. Something with clang etc. But installing latest version of numpy & matlibplot and just running it inside IDE worked fine.

Just changed the import from: from facer.utils import similarityTransform, constrainPoint, calculateDelaunayTriangles, warpTriangle to: from utils import similarityTransform, constrainPoint, calculateDelaunayTriangles, warpTriangle

then I could just run the "create_average_face_from_directory()" function no problem

Thanks for the great work

/// W