Hi, After a long struggle I am able to run my sage code in Eclipse. But I am getting few errors when I run my code that runs without any error in sage notebook.
For example using "for" loop, gives me error if I write "for k in [0..10]" , I need to change it to "for k in range(0,11)" ... (I guess I need to use Python syntax in Eclipse editor) I am using "multifactorial()" in my sage code. It runs good in sage notebook, but now giving me error in Eclipse editor. Error Message "AttributeError: 'int' object has no attribute 'multifactorial' " I use " import sys and from sage.all import * " at the start of my code. Any help/suggestion would be highly appreciated. Thanks Assad -- You received this message because you are subscribed to the Google Groups "sage-support" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/sage-support. For more options, visit https://groups.google.com/groups/opt_out.
