Re: [sage-support] Can the place where sage -i installs databases to be changed?

2019-07-25 Thread Dima Pasechnik
On Thu, 25 Jul 2019 at 19:07, Forrest Burt wrote: > Wonderful, thanks for the info. My concern is that it'll get placed into > some kind of /usr/local or similar directory. Near as I can tell from that > code you posted, it should just go into the same directory as Sage itself, > correct? > Yes,

Re: [sage-support] Can the place where sage -i installs databases to be changed?

2019-07-25 Thread Forrest Burt
Wonderful, thanks for the info. My concern is that it'll get placed into some kind of /usr/local or similar directory. Near as I can tell from that code you posted, it should just go into the same directory as Sage itself, correct? On Tuesday, July 23, 2019 at 12:38:33 PM UTC-6, Dima Pasechnik

Re: [sage-support] use of animated plot on jupyter-sage in a docker installation

2019-07-25 Thread Francesco
Probably in a next release ? I hope Il giorno giovedì 25 luglio 2019 09:59:52 UTC+2, Dima Pasechnik ha scritto: > > > > On Wed, 24 Jul 2019 at 19:40, Francesco > wrote: > >> I have installed sagemath in a docker container . I have made a simple >> sagemath code like this: >> sines =

Re: [sage-support] use of animated plot on jupyter-sage in a docker installation

2019-07-25 Thread Dima Pasechnik
On Wed, 24 Jul 2019 at 19:40, Francesco wrote: > I have installed sagemath in a docker container . I have made a simple > sagemath code like this: > sines = [plot(c*sin(x), (-2*pi,2*pi), color=Color(c,0,0), ymin=-1, ymax=1) > for c in sxrange(0,1,.2)] > > a = animate(sines) > a.show() > > >