Windows에서 Python 다중 처리의 런타임 오류
Windows 운영 체제에서 다중 처리 코드를 실행할 때 다음 오류 메시지가 나타날 수 있습니다.
RuntimeError: Attempt to start a new process before the current process has finished its bootstrapping phase. This probably means that you are on Windows and you have forgotten to use the proper idiom in the main module: if __name__ == '__main__': freeze_support() ... The "freeze_support()" line can be omitted if the program is not going to be frozen to produce a Windows executable.
원인 오류
Windows에서는 멀티프로세싱 모듈을 통해 생성된 하위 프로세스가 기본 프로세스의 환경을 상속합니다. 하위 프로세스가 시작되면 기본 모듈을 가져오려고 시도하며 이로 인해 코드가 재귀적으로 실행될 수 있습니다. 이를 방지하려면 메인 모듈에 if __name__ == '__main__' 가드를 추가해야 합니다.
해결책
문제를 해결하려면 메인 모듈을 수정하세요. ~처럼 다음과 같습니다:
import parallelTestModule if __name__ == '__main__': extractor = parallelTestModule.ParallelExtractor() extractor.runInParallel(numProcesses=2, numThreads=4)
설명
if __name__ == '__main__' 조건은 코드가 메인 모듈에서 직접 실행되고 있는지 확인합니다. 이 조건이 충족되면 다른 모듈에서 스크립트를 가져오지 않는다는 의미입니다. 이 경우 코드가 반복적으로 실행되지 않도록 기본 모듈 내에 하위 프로세스를 안전하게 생성할 수 있습니다.
위 내용은 Windows의 Python에서 멀티프로세싱을 사용할 때 'RuntimeError: Attempt to start a new process...'가 나타나는 이유는 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!