tensorflow/mesh

PermissionError: [WinError 32] The process cannot access the file because it is being used by another process

samaritanhu opened this issue · 0 comments

When I was running the mnist.py, it occurred that in mnist_dataset.py, function download,
os.remove(zipped_filepath) couldn't work due to PermissionError.
Therefore, changing this code into this might works.
try: os.remove(zipped_filepath) except PermissionError: pass