You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Very easy to fix compatibility issues, modify temp_config_file in slconfig.py = tempfile.NamedTemporaryFile(dir=temp_config_dir, suffix=".py") to (dir=temp_config_dir, suffix=".py",delete=False), and add a line: temp_config_file.close().
The reason seems to be that Windows does not allow reading unclosed cache files, so as long as you don't delete the file and close it once, you can move it normally.
The text was updated successfully, but these errors were encountered:
Very easy to fix compatibility issues, modify temp_config_file in slconfig.py = tempfile.NamedTemporaryFile(dir=temp_config_dir, suffix=".py") to (dir=temp_config_dir, suffix=".py",delete=False), and add a line: temp_config_file.close().
The reason seems to be that Windows does not allow reading unclosed cache files, so as long as you don't delete the file and close it once, you can move it normally.
The text was updated successfully, but these errors were encountered: