<div dir="ltr">I'm attempting to launch multiple evaluators which require `racket/gui`, however I get the error:<br><br>cannot instantiate `racket/gui/base` a second time in the same process<br><br>Is `racket/gui/base` maintaining some kind of state thats escaping the sandbox?<br>
<br><br><br><br><br>Example of the problem:<br><br><div>#lang racket/base</div><div>(require racket/sandbox)</div><div><br></div><div>(call-with-trusted-sandbox-configuration</div>

<div> (lambda ()</div><div>   (define (make) </div><div>     (make-evaluator 'racket/base</div><div>                     #:requires '(racket/gui/base)))</div><div><br></div><div>   (make)</div><div>   (make)))</div>


<div><br></div></div>