mesh icon indicating copy to clipboard operation
mesh copied to clipboard

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

Open samaritanhu opened this issue 4 years ago • 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

samaritanhu avatar Mar 17 '20 10:03 samaritanhu