We use IronPython 2.7 in a desktop app, which is used to programmatically run simple Python scripts which might import standard modules like ‘sys’, ‘time’, and so on. It retrieves these from the C:PythonLib folder, which is passed to ScriptEngine.SetSearchPaths()
.
Up until now we’ve been deploying the full C:Python27 folder to customer PCs, which is a lot to send, so I was wondering if this can be trimmed down, for example only deploying .py files in C:Python27Lib? Or will these files have their own dependencies on other files and subfolders within here?
3