mesh
mesh copied to clipboard
PermissionError: [WinError 32] The process cannot access the file because it is being used by another process
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