I have IronPython installed
My python file looks like this:
import sys
print(sys.version)
import json
The code that runs it:
var p = Python.CreateEngine();
var scope = p.CreateScope();
p.ExecuteFile("Test.py", scope);
It prints out:
2.7.7 (IronPython 2.7.7 (2.7.7.0) on .NET 4.0.30319.42000 (32-bit))
But then fails with the exception:
No module named json
As I understand the json module should be included in this version of IronPython.
Why do I get this error?