I have a C# application that uses IronPython to run Python scripts. I have added the references for IronPython successfully and can run simple Python scripts.
The problem I have is running Python scripts that import modules. I know I have to change the search paths but am having trouble doing it successfully.
I have a separate Anaconda distribution of Python with modules in there. How can change the search path of IronPython so I can get access to these modules?
It is a Windows10 system.