Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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;
}
share|improve this question
What is the problem? Tell us what the error messages are. – asmeurer Jan 4 at 17:55
By the way, SymPy hasn't been officially tested in IronPython, so the issue could just be that it doesn't really work there. – asmeurer Jan 4 at 17:57

2 Answers

up vote 0 down vote accepted

As I noted in a comment, it's impossible to tell what's wrong of you don't tell us what the error is, but a possibility is that you are using limit incorrectly. You need to pass it a symbolic object, not a lambda function, it takes three arguments, and infinity is called ,oo, not inf.

n = Symbol("n")
limit((1 + 3/n)**n, n, oo)
share|improve this answer
i changed my code with checking whitespacing then i tried your solution i get this error do you have any idea ?No module named fcntl 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: No module named fcntl Source Error: Line 39: result = clr.Convert(value, String)", expr)); Line 40: Line 41: script.Execute(scope); Line 42: Line 43: return scope.GetVariable("result"); – Alijohnn Jan 5 at 9:25
Can you run import sympy from the iron python shell? – asmeurer Jan 5 at 16:05
now i'm getting error no module functl ? – Alijohnn Jan 7 at 15:59
I get that too. I think this is a bug in IronPython. Try doing import subprocess (note that this is part of the Python standard library). – asmeurer Jan 7 at 19:18
And by the way, what platform are you on? – asmeurer Jan 7 at 19:20
show 2 more comments

I’m not familar with executing Python code in .NET, but in Python every indent has a meaning. I’d guess that you need to remove all leading whitespace for the code:

    // ...
    var script = engine.CreateScriptSourceFromString(string.Format(@"
from sympy import *
value = {0}

import clr
from System import String
result = clr.Convert(value , String)", expr));

    script.Execute(scope);
share|improve this answer
nope it doesn't work. – Alijohnn Jan 3 at 12:51
@user1940128 Still the same error? Is there really no whitespace in front of those lines? Also does the @" line have any trailing whitespace? – poke Jan 3 at 12:53
when i add them as a single line , i get this error script.Execute(scope); = > unexpected token 'value' – Alijohnn Jan 3 at 13:04
@user1940128 Well, you can’t really write Python in a single line. Whitespace, including line breaks, is important. Can you try adding \n linebreaks manually, but keep the string otherwise in a single line? (You need to remove the @ from the string literal though to make the escape sequence work) – poke Jan 3 at 13:05
i tried with using white space but i still have the same problem. – Alijohnn Jan 3 at 14:40

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.