<div dir="ltr"><div><div>Hi Folks,<br><br></div>This took a bit of time to figure out, so I figured out I'd share for posterity. Pyscripter isn't my normal IDE, but it's popular, especially in the ArcGIS ecosystem. Here's how to get it working with Osgeo4W python instead of "the other one":<br><br></div>Install pyscripter, create this batchfile, adjusting path as needded, and save it in PATH, run it, done.<br><div><br>    <span style="font-family:monospace,monospace">%~d0\apps\PyScripter\PyScripter.exe %* --pythondllpath=%osgeo4w_root%\bin</span><br><br></div><div>Explanation:<br><br></div><div>    <span style="font-family:monospace,monospace">%~d0</span>: expands to Drive letter that batch file exists on, e.g. c:\bin\pyscripter.bat<br><br></div><div>    <span style="font-family:monospace,monospace">%*</span>: expands command line arguments, allows `pyscripter.bat d:\code\somefile.py`. It <i>must</i> precede pyscripter option arguments.<br><br>    --<span style="font-family:monospace,monospace">pythondllpath</span>: needed when pythonxx.dll doesn't reside in same folder as python.exe.<br><br></div><div>cheers,<br><br></div><div>Matt<br></div></div>