I am using SharpDevelop to create an executable from my IronPython script. The only problem is that my script has a random import line which works fine when running the script through ipy.exe, but when I try to create and run exe from the script in SharpDevelop, I always get the message:
IronPython.Runtime.Exceptions.ImportException: No module named random
Why doesn't SharpDevelop see "random"? How can I see him?
source
share