<div>When I write program (.py) with IDLE , I am able to use run package . </div>
<div> </div>
<div> </div>
<div>- - - -   start  - - - -</div>
<div> </div>
<div>if __name__ == '__main__':<br>    import sys,os<br>    import run<br>    run.main(['', os.path.basename(sys.argv[0])] + sys.argv[1:])</div>
<div> </div>
<div>- - - -  end - - - - - </div>
<div> </div>
<div>above code works simply with the IDLE.</div>
<div> </div>
<div>But problem arises , when I use Eric or pyScriptter , On other editor it gives the error "Exceptions.ImportError : No Module named run"</div>
<div>Do i need to set any variable ? or path ?</div>
<div>run is a system package or third party ? </div>
<div>Thanx In Advance </div>