Re: [sage-devel] Possible bug when computing powers of complex numbers

2019-10-16 Thread Emmanuel Charpentier
And, BTW: sage: maxima(t) (%i/(10*%pi))^(3/2) sage: maxima(t)^2 -%i/(1000*%pi^3) HTH,... Le jeudi 17 octobre 2019 08:53:47 UTC+2, Emmanuel Charpentier a écrit : > > It's worse than that... > > sage: t=((1/10)*I/pi)^(3/2) > sage: t > (1/10*I/pi)^(3/2) > sage: t^2 > > This doesn't return. An I had

Re: [sage-devel] Possible bug when computing powers of complex numbers

2019-10-16 Thread Emmanuel Charpentier
It's worse than that... sage: t=((1/10)*I/pi)^(3/2) sage: t (1/10*I/pi)^(3/2) sage: t^2 This doesn't return. An I had to insist to interrupt (had to strike C-C 6 times in emacs' sage-shell-mode...) ^C^C^C^C^C^C--- KeyboardI

Re: [Debian-science-sagemath] [sage-devel] Sage Crash Report - Debian testing - amd64

2019-10-16 Thread cluton
Thanks, I will investigate. On Thu., 17 Oct. 2019, 3:00 am Timo Kaufmann, wrote: > For what it's worth, if you don't mind installing a secondary package > manager (https://nixos.org/nix/download.html) you can also use the nix > package on debian. Using the unstable channel (rolling release) you

[sage-devel] Re: Building sage 8.9 from source on macOS Mojave failure

2019-10-16 Thread S. Diop
TeXlive is installed normally in /usr/local/ so I may be facing new problems by moving it out of its default location but I will take the time to try to sort this out. Thanks so much! On Monday, October 14, 2019 at 9:23:57 PM UTC+2, S. Diop wrote: > > I am experiencing failure building sage 8.9

Re: [sage-devel] Re: Building sage 8.9 from source on macOS Mojave failure

2019-10-16 Thread Dima Pasechnik
My guess is that you installed TeXLive directly, instead of using Homebrew. (Same probably applies to ImageMagick, and perhaps Spell, Octave...) I'd have erased everything in /usr/local, and started from scratch - but perhaps that's too costly for you. In any case, I'd start by installing TexLive

[sage-devel] Re: Building sage 8.9 from source on macOS Mojave failure

2019-10-16 Thread S. Diop
Hi Dima: you are certainly right: it seems that homebrew did not successfully install libgd. When I try to reinstall it it stuck at the postinstall stage. Here are the logs of my tentatives. Could you help with this? bash: > brew install libgd Updating Homebrew... ==> Auto-updat

[sage-devel] Re: Building sage 8.9 from source on macOS Mojave failure

2019-10-16 Thread S. Diop
I will post the results. Thanks so much! On Monday, October 14, 2019 at 9:23:57 PM UTC+2, S. Diop wrote: > > I am experiencing failure building sage 8.9 on a MacBook Pro running macOS > 10.14.6. > > I already managed to build a couple of previous sage version sources. The > actual build stops wi

Re: [sage-devel] Re: Building sage 8.9 from source on macOS Mojave failure

2019-10-16 Thread Dima Pasechnik
for some reason libgd configure failed to detect the presence of libpng. as you are using Homebrew anyway, a quick fix would be to install its libgd, then uninstall Sage's libgd by doing make libgd-clean followed by ./configure make build On Wed, 16 Oct 2019, 20:05 S. Diop, wrote: > I

Re: [sage-devel] Re: Building sage 8.9 from source on macOS Mojave failure

2019-10-16 Thread Dima Pasechnik
Thanks. One sees there ImportError: dlopen(/Applications/sage-8.9/local/lib/python2.7/site-packages/sage/matrix/matrix_mod2_dense.so, 2): Symbol not found: _gdImageCreateFromPng so something is wrong with libgd (and possibly with libpng) Could you post the main config.log of this build, as well

[sage-devel] Re: Building sage 8.9 from source on macOS Mojave failure

2019-10-16 Thread S. Diop
Sorry I should have attached this crash error report. On Monday, October 14, 2019 at 9:23:57 PM UTC+2, S. Diop wrote: > > I am experiencing failure building sage 8.9 on a MacBook Pro running macOS > 10.14.6. > > I already managed to build a couple of previous sage version sources. The > actual b

Re: [sage-devel] Re: Building sage 8.9 from source on macOS Mojave failure

2019-10-16 Thread Dima Pasechnik
Thanks. The interesting details are in '/Users/seet/.sage/ipython-5.0.0/Sage_crash_report.txt' as the error message tries to make clear. Please post it here too. On Wed, Oct 16, 2019 at 5:05 PM S. Diop wrote: > > Hi! > Here is the result of an attempt to run ./sage > > % > > ./sage > This loo

[sage-devel] Re: Building sage 8.9 from source on macOS Mojave failure

2019-10-16 Thread S. Diop
Hi! Here is the result of an attempt to run ./sage % > ./sage This looks like the first time you are running Sage. Cleaning up, do not interrupt this. Done cleaning. ┌┐ │ SageMath version 8.9, Release Date: 2019-09-29

Re: [Debian-science-sagemath] [sage-devel] Sage Crash Report - Debian testing - amd64

2019-10-16 Thread Timo Kaufmann
For what it's worth, if you don't mind installing a secondary package manager (https://nixos.org/nix/download.html) you can also use the nix package on debian. Using the unstable channel (rolling release) you can already use sagemath 8.9. You can use pre-build binaries or build from source. I

[sage-devel] Manifolds: Pullback/Pushforward Notation

2019-10-16 Thread Michael Jung
Dear community, at this stage, the pushforward of a differentiable map '\Phi' is noted by '\Phi^*'. After some discussion with my collegues and consulting common literature (like "Smooth Manifolds" by Lee), this seems not to be the canonical notation. I've already opened a ticket

Re: [sage-devel] 3d graphics with jsmol in version 3.9 broken

2019-10-16 Thread Dima Pasechnik
On Mon, Oct 14, 2019 at 1:49 PM João Palhoto Matos wrote: > > I have found that activating a 3d jsmol animation in a sage 3.9 notebook is > broken. Although initial preview is correct activating the animation leads to > a graphic showing several small spheres (molecules?!). Reverting to version

Re: [sage-devel] Re: Building sage 8.9 from source on macOS Mojave failure

2019-10-16 Thread Dima Pasechnik
the error was earlier. please try to start Sage by running ./sage and report the result. On Wed, Oct 16, 2019 at 4:23 AM S. Diop wrote: > > I did uninstall Anaconda completely and laugh a build from scratch. I got a > new error "Error building the documentation". Please find below the end of

[sage-devel] Manifolds: 'set_restriction' Behaviour

2019-10-16 Thread Michael Jung
Dear community, sage: M = Manifold(2, 'M') sage: X. = M.chart() sage: eX = X.frame() sage: a = M.one_form() sage: b = M.one_form() sage: a[eX,:] = x*y, x+y sage: b.set_restriction(a) sage: b.display() ValueError Traceback (most recent call last) ... ValueError: no basis could be found for comp