Hi all,<div>I&#39;m trying to use this feature in ironpython. I just follow the first sample:</div><div><div>--------------------------------------------</div><div>from multiprocessing import Process</div><div><br></div><div>
def f(name):</div><div>    print &#39;hello&#39;, name</div><div><br></div><div>if __name__ == &#39;__main__&#39;:</div><div>    p = Process(target=f, args=(&#39;bob&#39;,))</div><div>    p.start()</div><div>    p.join()</div>
</div><div>--------------------------------------------</div><div>But I get the following error when I&#39;m executing it:</div><div>--------------------------------------------</div><div><div>c:\temp&gt;ipy test-ipy-multiprocessing.py</div>
<div>Traceback (most recent call last):</div><div>  File &quot;test-ipy-multiprocessing.py&quot;, line 1, in &lt;module&gt;</div><div>ImportError: No module named multiprocessing</div></div><div>--------------------------------------------</div>
<div><br></div><div>Thanks for any help.</div><div><br></div><div>Regards.</div><div><br></div><div>Romain.</div><div><br></div><div>PS: I have just installed the last release of IronPython 2.7 </div><div>--------------------------------------------</div>
<div><div>c:\temp&gt;ipy -V</div><div>PythonContext 2.7.0.40 on .NET 4.0.30319.1</div></div><div>--------------------------------------------</div>