Python Extensions for Geosoft Desktop Applications
Python extensions that run from Geosoft Desktop will will run from a python interpreter that is executed within the context of the Geosoft Desktop program. Geosoft Desktop does not ship with its own Python interpreter, and users who wish to run Python extensions must install the 64-bit Python 3.5 or later. Geosoft Desktop uses dynamic loading with a version-independent Python C API for embedded Python script executions.
The location and behavior of the Python interpreter for running Python extensions inside Geosoft Desktop is determined either by environment variables, or if not set, by registry keys. Geosoft Desktop users can also define registry keys using the "Settings > Global settings > Python..." menu item and then re-starting Geosoft Desktop.
Environment VarableVariable | Registry Key | Use |
---|---|---|
GEOSOFT_PYTHON_HOME | PYTHON_HOME | Folder that contains Python distribution (3.5+) to use. This folder contains python.exe . |
GEOSOFT_PYTHON_SHOW_CONSOLE | PYTHON_SHOW_CONSOLE | If '1' (true) , - a console is spawned for the duration of every script. Console input and output (such as the output from print() statements) is directed to and from this console. The console remains open after termination of the script and requires the user to close the console window, or enter ctrl-C at the keyboard. |
GEOSOFT_PYTHON_DLL | PYTHON_DLL | Geosoft Desktop will attempt to launch a background process of the python.exe interpreter found using PYTHON_HOME , from which process inspection is used to determine the location of python.dll. The PYTHON_DLL variable should not be necessary, but is provided to deal with a non-standard Python implementation. |
...