Closed kaatrasa closed 9 months ago
I was able to reproduce these issues https://github.com/SpectacularAI/sdk-examples/issues/126 https://github.com/SpectacularAI/sdk-examples/issues/127 on both Ubuntu 20.04 LTS & Windows.
Basically, we ran into this issue: https://stackoverflow.com/questions/42392600/oserror-errno-18-invalid-cross-device-link and the fix was to use shutil.move(...) instead of os.rename(...). Also includes some other minor improvements.
shutil.move(...)
os.rename(...)
I was able to reproduce these issues https://github.com/SpectacularAI/sdk-examples/issues/126 https://github.com/SpectacularAI/sdk-examples/issues/127 on both Ubuntu 20.04 LTS & Windows.
Basically, we ran into this issue: https://stackoverflow.com/questions/42392600/oserror-errno-18-invalid-cross-device-link and the fix was to use
shutil.move(...)
instead ofos.rename(...)
. Also includes some other minor improvements.