Re: [sage-support] FYI : ipywidgets allows (sort of) interactive Sage graphs in Jupyter notebook.

2016-09-20 Thread Emmanuel Charpentier
Le mardi 20 septembre 2016 22:15:43 UTC+2, Jeroen Demeyer a écrit : > > On 2016-09-20 22:09, Emmanuel Charpentier wrote: > > May I ask why ? (Just curious, no hostility whatsoever implied...). > > Because those packages are installed and the nbextension is enabled in > Sage by default:

[sage-support] sage crash report

2016-09-20 Thread Fabio Di Cosmo
*** IPython post-mortem report {'commit_hash': u'b630b41', 'commit_source': 'installation', 'default_encoding': 'UTF-8', 'ipython_path': '/usr/lib/sagemath/local/lib/python2.7/site-packages/IPython', 'ipython_version':

Re: [sage-support] FYI : ipywidgets allows (sort of) interactive Sage graphs in Jupyter notebook.

2016-09-20 Thread Jeroen Demeyer
On 2016-09-20 22:09, Emmanuel Charpentier wrote: May I ask why ? (Just curious, no hostility whatsoever implied...). Because those packages are installed and the nbextension is enabled in Sage by default: https://trac.sagemath.org/ticket/21256 -- You received this message because you are

Re: [sage-support] FYI : ipywidgets allows (sort of) interactive Sage graphs in Jupyter notebook.

2016-09-20 Thread Emmanuel Charpentier
Le mardi 20 septembre 2016 16:27:28 UTC+2, Jeroen Demeyer a écrit : > > On 2016-09-20 16:12, Emmanuel Charpentier wrote: > > sage -pip install ipywidgets > > > > echo "jupyter nbextension enable --py --sys-prefix widgetsnbextension" | > > sage -sh > > In recent Sage betas, the above should

Re: [sage-support] PALP database for 4D reflexive polytopes?

2016-09-20 Thread Vincent Delecroix
Justin is right, the question is precisely: how Sage was installed on this computer? On 20 September 2016 at 20:31, Justin C. Walker wrote: > > On Sep 20, 2016, at 10:41 , Ursula Whitcher wrote: > >> I tried to install the PALP database for four-dimensional reflexive >> polytopes

Re: [sage-support] PALP database for 4D reflexive polytopes?

2016-09-20 Thread Justin C. Walker
On Sep 20, 2016, at 10:41 , Ursula Whitcher wrote: > I tried to install the PALP database for four-dimensional reflexive > polytopes on the SageMath cloud, following the documentation at > > http://doc.sagemath.org/html/en/reference/geometry/sage/geometry/polyhedron/palp_database.html > > ,

[sage-support] PALP database for 4D reflexive polytopes?

2016-09-20 Thread Ursula Whitcher
I tried to install the PALP database for four-dimensional reflexive polytopes on the SageMath cloud, following the documentation at http://doc.sagemath.org/html/en/reference/geometry/sage/geometry/polyhedron/palp_database.html , which suggests the shell command sage -i polytopes_db_4d .

[sage-support] Re: Instruction on how to use Sage with Eclipse and PyDev

2016-09-20 Thread Ahmed Zawia
hi, I am trying to install module sage.all but i could not !! can you please assist me thanks On Friday, December 16, 2011 at 11:22:25 PM UTC-3, Nicolas Essis-Breton wrote: > > I'm just beginning to use this setup. Maybe, there are are some hidden > limitations. > > I assume you have a working

[sage-support] Algebraic Geometry in Sage

2016-09-20 Thread saad khalid
Hey everyone: There's a command in M2 called "selectInSubring". I was wondering, though I know I can use M2 through sage, is there a direct way to do this through Sage itself? Or is interfacing to M2 the only way? Here is the M2 description of the function:

Re: [sage-support] FYI : ipywidgets allows (sort of) interactive Sage graphs in Jupyter notebook.

2016-09-20 Thread Jeroen Demeyer
On 2016-09-20 16:12, Emmanuel Charpentier wrote: sage -pip install ipywidgets echo "jupyter nbextension enable --py --sys-prefix widgetsnbextension" | sage -sh In recent Sage betas, the above should not be needed. -- You received this message because you are subscribed to the Google Groups

[sage-support] Re: How does @interact work in Sage 7.3 Jupiter notebook?

2016-09-20 Thread Emmanuel Charpentier
This post might help... Note that this solution is different of Sage's (@)interact function(s). HTH, -- Emmanuel Charpentier Le mardi 13 septembre 2016 03:36:19 UTC+2, ahaus...@umassd.edu a écrit : > > Hi, > > the Interact

[sage-support] FYI : ipywidgets allows (sort of) interactive Sage graphs in Jupyter notebook.

2016-09-20 Thread Emmanuel Charpentier
I found this useful (at least as a stopgap measure while waiting for Trac#21267 , which may be not as easy as it seems...), and thought that documenting this might be useful to people wanting interactive displays in Sagemath Jupyter notebooks : The

[sage-support] Re: plotting ln(x) graph on sagemath

2016-09-20 Thread HG
syntax should be show(P) or P but not print P which gives you your result Le samedi 17 septembre 2016 23:13:05 UTC+2, Anoz a écrit : > > I'm trying to plot the graph ln(1+x/1-x) how do I do this on sagemath , I > just need the correct syntax. > -- You received this message because you are

Re: [sage-support] huge virtual memory size when launching 7.3

2016-09-20 Thread Jeroen Demeyer
On 2016-09-20 12:54, Jonathan Bober wrote: From reading what you've sent, I guess that what you have in mind is calling mmap with PROT_NONE and then calling mprotect() to change that to read/write whenever growing the stack? That seems like it might be a reasonable thing to do (though I'm only

[sage-support] Re: plotting ln(x) graph on sagemath

2016-09-20 Thread HG
On mine sage 7.3 it does it straight Le samedi 17 septembre 2016 23:13:05 UTC+2, Anoz a écrit : > > I'm trying to plot the graph ln(1+x/1-x) how do I do this on sagemath , I > just need the correct syntax. > -- You received this message because you are subscribed to the Google Groups

[sage-support] Re: plotting ln(x) graph on sagemath

2016-09-20 Thread HG
Maybe fist write %matplotlib inline Sometimes I got the same problem I do it first with python2 kernel and after I do it with sagemath again Le samedi 17 septembre 2016 23:13:05 UTC+2, Anoz a écrit : > > I'm trying to plot the graph ln(1+x/1-x) how do I do this on sagemath , I > just need the

Re: [sage-support] huge virtual memory size when launching 7.3

2016-09-20 Thread Jonathan Bober
>From reading what you've sent, I guess that what you have in mind is calling mmap with PROT_NONE and then calling mprotect() to change that to read/write whenever growing the stack? That seems like it might be a reasonable thing to do (though I'm only basing that on spending a few minutes reading

[sage-support] Re: How can Sage and Python communicate via global variables?

2016-09-20 Thread Paul Leopardi
Thanks, that all works quite well. -- 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 sage-support+unsubscr...@googlegroups.com. To post to this group, send email