Now I'm getting error: Server Error in Application. Cannot import name typed Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. Exception Details: IronPython.Runtime.Exceptions.ImportException: Cannot import name typed Source Error: Line 44: expr)); Line 45: Line 46: script.Execute(scope); Line 48: return scope.GetVariable("result");
public static string PythonEvaluate(string expr)
{
var engine = Python.CreateEngine(); var paths = engine.GetSearchPaths();
paths.Add(@"C:\Python27\Lib\Site-Packages");
paths.Add(@"C:\sympy");
engine.SetSearchPaths(paths);
var scope = engine.CreateScope();
var script = engine.CreateScriptSourceFromString(string.Format(@"
import sys
sys.platform = "win32" // Default is cli
from sympy import *
n = Symbol('n')
value = {0}
import clr
from System import String
result = clr.Convert(value , String)",
expr));
script.Execute(scope);
return scope.GetVariable("result");
}
protected void Page_Load(object sender, EventArgs e)
{
var result = PythonEvaluate("limit((1 + 3/n)**n, n, oo)");
Label3.Text = result;
}