On Thursday 20 December 2007 14:28, gani wrote: > Hi, I had an interesting question today when I was trying to introduce > SAGE to some of my colleagues. A person asked - can sage be imported > as a module into python? Can it? please let me know.
Yes, with some caveats. The biggest one is that the sage installs its own python install because it is tightly tied to the current version. It installs python 2.5, but don't worry -- it is entirely separate from your system python. This means that if you have favorite python modules that don't come standard with python you'll need to install them in the sage python if you want to use them with sage. I write scripts all the time with a line like: from sage.all import * or import sage.all -- Joel --~--~---------~--~----~------------~-------~--~----~ To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/sage-support URLs: http://sage.math.washington.edu/sage/ and http://sage.scipy.org/sage/ -~----------~----~----~----~------~----~------~--~---
