简体   繁体   中英

How to install "util" on anaconda spyder 5

I'm trying to execute this code below:

from util import  testDlibFaceDetector, saveFaces_hogFaceDetector

# choose method to detect faces: HAAR Cascade or HOG algorithm
if __name__ == '__main__':
    # testFaceRecognitionAlgorithm() #HAAR Cascade
    # testDlibFaceDetector() # HOG
    # saveFaces()
    saveFaces_hogFaceDetector()

but in everytime I get the same result which is:

runfile('E:/code pfe/liveness-master/4_liveness net/untitled0.py', wdir='E:/code pfe/liveness-master/4_liveness net')
Traceback (most recent call last):

  File "E:\code pfe\liveness-master\4_liveness net\untitled0.py", line 8, in <module>
    import util

ModuleNotFoundError: No module named 'util'

sp please can you show me how to install it correctly, I found the git clone method but I didn't find it useful for me.

To avoid installing util , you need to place the file that imports it in the same directory where util is.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM