ID EN
Multiprocessing

set_start_method

Python 3.11

Set the method which should be used to start child processes. The method argument can be 'fork', 'spawn' or 'forkserver'. Raises RuntimeError if the start method has already been set and force is not True. If method is None and force is True then the start method is set to None. If method is None and force is False then the context is set to the default context.

Syntax

PYTHON
multiprocessing.set_start_method(method, force=False)

See Also

RuntimeError