pickle.UnpicklingErrorpickle.UnpicklingError
The pickle module could not deserialize the provided data.
subprocess.CalledProcessErrorA subprocess exited with a non-zero return code.
The command run via subprocess.check_call(), subprocess.check_output(), or subprocess.run(check=True) returned a non-zero exit code, indicating failure.
Check error.returncode and error.stderr for the failure reason. Use subprocess.run() without check=True if you want to handle non-zero exits yourself. Fix the underlying command or its arguments.
subprocess.check_call(["false"]) # CalledProcessErrorpickle.UnpicklingErrorThe pickle module could not deserialize the provided data.
IsADirectoryErrorA file operation was attempted on a path that is a directory.
TypeError: missing required positional argumentA function was called without providing all required positional arguments.
NotADirectoryErrorA directory operation was attempted on a path that is not a directory.
FileExistsErrorAn operation failed because the file or directory already exists.
RecursionErrorThe maximum recursion depth was exceeded.