[sage-support] Re: Unable to install Sage

2009-05-21 Thread HugoMonteiro
Hi, I can confirm I have the same problem in my virtual machine. I have checked the compile flags and it doesn't have anything my cpu doesn't support. I have tried downloading the sage vmware virtual machine and it also refuses to run with the same error. Cheers, Hugo On May 21, 9:23 am,

[sage-support] Re: A lot of execfile and print \x01r\x01e266 in notebook output

2009-05-21 Thread Laurent
My system: IBM Thinkpad X60 running Ubuntu 9.04, Kernel Linux 2.6.28-11-generic Python 2.6.2 SAGE Version 3.0.5, Release Date: 2008-07-11 installed with apt-get from the repositories (I know it's an old version, but if my problem is unrelated to that, I would like to avoid building from

[sage-support] Re: sage scripts

2009-05-21 Thread flori
the ls -lah command gives flor...@base:~/sage/sage-3.4$ ls -lah total 16M drwxr-xr-x 9 florian florian 4.0K 2009-05-21 20:09 . drwxr-xr-x 3 florian florian 4.0K 2009-04-19 15:38 .. -rw-r--r-- 1 florian florian 71K 2009-04-19 15:38 COPYING.txt drwxr-xr-x 8 florian florian 4.0K 2009-04-19

[sage-support] Re: sage scripts

2009-05-21 Thread flori
hay the variable SAGE_ROOT is set to export SAGE_ROOT=/home/florian/sage/sage-3.4/ and that is where my file is... regards florian --~--~-~--~~~---~--~~ To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group, send email

[sage-support] Re: sage scripts

2009-05-21 Thread Minh Nguyen
Hi Florian, On Thu, May 21, 2009 at 12:14 PM, flori beutler.flor...@googlemail.com wrote: the ls -lah command gives flor...@base:~/sage/sage-3.4$ ls -lah total 16M drwxr-xr-x 9 florian florian 4.0K 2009-05-21 20:09 . drwxr-xr-x 3 florian florian 4.0K 2009-04-19 15:38 .. -rw-r--r-- 1

[sage-support] Re: sage scripts

2009-05-21 Thread Kevin Horton
On 21 May 2009, at 06:53, Kevin Horton wrote: On 21 May 2009, at 02:22, flori wrote: I would like to write a script using sage and I just followed the tutorial page 82. I copied the example #!/usr/bin/env sage -python import sys from sage.all import * if len(sys.argv) != 2: print

[sage-support] Remove optional spkg?

2009-05-21 Thread Kevin Horton
I'm hoping someone can suggest a way to remove an optional spkg, specifically the scitools++ package. It looks like the scitools++ package may not be compatible with the current numpy and matplotlib packages, and I want to remove it and try scitools-.4 instead. Is there a way to do this

[sage-support] Re: Remove optional spkg?

2009-05-21 Thread Jaap Spies
Kevin Horton wrote: I'm hoping someone can suggest a way to remove an optional spkg, specifically the scitools++ package. I only see scitools++ in experimental! Experimental packages are dangerous if you don't know what you are doing, stay away :)! It looks like the scitools++ package

[sage-support] Re: Remove optional spkg?

2009-05-21 Thread Kevin Horton
On 21 May 2009, at 12:41, Jaap Spies wrote: Kevin Horton wrote: I'm hoping someone can suggest a way to remove an optional spkg, specifically the scitools++ package. I only see scitools++ in experimental! Experimental packages are dangerous if you don't know what you are doing, stay away

[sage-support] Broken examples in doc/live/numerical_sage/plotting.html?

2009-05-21 Thread Kevin Horton
Neither of the examples in doc/live/numerical_sage/plotting.html work on my sage-4.0.alpha0. I get the following results when they are run from a notebook: The first three examples all fail with the same traceback: {{{id=16| import numpy from scitools import easyviz x =

[sage-support] Re: notebook dont function

2009-05-21 Thread Bruce Cohen
I believe the problem is Firefox and not Sage. I run Ubuntu 8.04 and can only use Sage notebooks on Firefox when I have a working internet connection. When I use Opera (http://www.opera.com/) as the web browser, I am fine whether on the net or not. -Bruce On May 20, 9:04 pm, Minh Nguyen

[sage-support] Re: notebook dont function

2009-05-21 Thread Kjetil Halvorsen
On Thu, May 21, 2009 at 14:37, Bruce Cohen math.co...@gmail.com wrote: I believe the problem is Firefox and not Sage. I run Ubuntu 8.04 and can only use Sage notebooks on Firefox when I have a working internet connection. When I use Opera (http://www.opera.com/) as the web browser, I am

[sage-support] Re: notebook dont function

2009-05-21 Thread Jason Grout
Bruce Cohen wrote: I believe the problem is Firefox and not Sage. I run Ubuntu 8.04 and can only use Sage notebooks on Firefox when I have a working internet connection. When I use Opera (http://www.opera.com/) as the web browser, I am fine whether on the net or not. I believe this is a

[sage-support] Re: A lot of execfile and print \x01r\x01e266 in notebook output

2009-05-21 Thread Nikos Mutsanas
Hi Laurent! Thank you very much, I followed your advice and everything works fine now. Unfortunately I start getting some deprecation warnings and errors that were not there before, but that's only minor issues :). Thanks again, you have been very helpful!! Best regards, Nikos On 21 Mai,

[sage-support] Re: notebook dont function

2009-05-21 Thread Minh Nguyen
On Fri, May 22, 2009 at 12:58 AM, Kjetil Halvorsen kjetil1...@gmail.com wrote: SNIP Can you try installing Sage 3.4.2 from source and then run the notebook again? Did so. Same , exact, problem. Is there some alternative interfaces to run sage? In Firefox under the menu File, there's an

[sage-support] Re: sage scripts

2009-05-21 Thread flori
Thanks a lot for your replies... The following two commands work now flor...@base:~/sage/sage-3.4$ sudo ./sage factor.sage 2006 2 * 17 * 59 and flor...@base:~/sage/sage-3.4$ sudo ./sage ./factor 2006 2 * 17 * 59 In the second case I changed the first line of the file to #! /path/to/sage