Re: [sage-support] Abridged summary of sage-support@googlegroups.com - 4 updates in 2 topics

2020-12-28 Thread Thomas Judson
I am trying to install Sage 9.2 on an MacBookAir with an M1 processor. I have installed the following: OpenSSL 1.1.1i Jupyter Notebook (which works) Python 3.8.5 I ran the fix Mac script. When I open Sage, I get a message saying that the Jupyter server has failed to start. The log file is be

[sage-support] Apple M1 Chip

2020-12-16 Thread Thomas Judson
I have a new MacBook Air with an Apple M1 chip. Does the Intel version of Sage 9.2 work on this machine? Tom -- 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 s

[sage-support] Deprecation warning for a Sage interact

2019-12-21 Thread Thomas Judson
I get the following deprecation warning for a Sage interact: /home/sc_serv/sage/local/lib/python2.7/site-packages/sage/misc/sage_eval.py:203: DeprecationWarning: Substitution using function-call syntax and unnamed arguments is deprecated and will be removed from a future release of Sage; you ca

[sage-support] macOS Catalina

2019-06-21 Thread Thomas Judson
macOS Catalina, aka macOS 10.15, is due out September 23 and will enforce Gatekeeper. Developers intending to support the forthcoming macOS Catalina must submit their apps to Apple's notarizing security process or they will not run. Has any thought been given to how Sage will run on on this ne

[sage-support] Sage and scipy

2018-02-14 Thread Thomas Judson
What routines can be imported from the spicy.integrate module (https://docs.scipy.org/doc/scipy/reference/integrate.html#module-scipy.integrate) into Sage? twj = Thomas W. Judson, Associate Professor Department of Mathematics and Statistics Stephen F. Austin State University P.O. Box 1

[sage-support] Re: Plotting with R in A Sage Cell

2017-08-21 Thread Thomas Judson
Looks okay to me. Thanks, Tom On Sunday, August 20, 2017 at 7:09:31 PM UTC-5, Andrey Novoseltsev wrote: > > On Sunday, 6 August 2017 22:58:20 UTC-6, Andrey Novoseltsev wrote: >> >> The next problem is that if a linked cell does not create a new plot, >> then the old one will be shown again - si

[sage-support] Re: Plotting with R in A Sage Cell

2017-07-21 Thread Thomas Judson
Yes, I am sure that you have hit on the problem. Let me know what you come up with. On Wednesday, July 19, 2017 at 1:23:00 PM UTC+2, Thomas Judson wrote: > > The following code works in CoCalc > > cases <- c(36, 531, 4233, 8682, 7164, 2229, 600, 164, 57, 722, 1517, 1828, >

[sage-support] Re: Plotting with R in A Sage Cell

2017-07-20 Thread Thomas Judson
(), but neither works. Any ideas? On Thursday, July 20, 2017 at 12:53:35 AM UTC+2, Andrey Novoseltsev wrote: > > On Wednesday, 19 July 2017 05:23:00 UTC-6, Thomas Judson wrote: >> >> The following code works in CoCalc >> >> cases <- c(36, 531, 4233, 8682, 71

[sage-support] Plotting with R in A Sage Cell

2017-07-19 Thread Thomas Judson
The following code works in CoCalc cases <- c(36, 531, 4233, 8682, 7164, 2229, 600, 164, 57, 722, 1517, 1828, 1539, 2416, 3148, 3465, 1440) deaths <- c(0, 0, 130, 552, 738, 414, 198, 90, 56, 50, 71, 137, 178, 194, 290, 310, 149) plot(ts(cases), col="red", main="Influenza Epidemic") lines(ts(10*

[sage-support] Linking Sage cells in a wiki

2017-07-17 Thread Thomas Judson
I am trying to link two Sage cells in a wikidot webpage. The following code successfully executes [[html]] https://sagecell.sagemath.org/static/embedded_sagecell.js";> sagecell.makeSagecell({"inputLocation": ".sage"}); a = 10 Z8 = Integers(8) Z8 [[/html]] I would like to add a second l

[sage-support] Sage Interacts in R

2016-06-14 Thread Thomas Judson
Does anyone have any experience writing interacts for R? If so, can you post or send examples? Tom Judson -- 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

[sage-support] R and Sage Cells

2016-06-07 Thread Thomas Judson
Does anyone have any experience using R in a Sage cell? The following code works fine on SMC but not on the Sage cell server. %r age <- c(25, 30, 56) gender <- c("male", "female", "male") weight <- c(160, 110, 220) mydata <- data.frame

[sage-support] Sage on El Capitan

2016-01-22 Thread Thomas Judson
I have a MathBook XML script that calls sage to build diagrams for a book, and I would be able to call sage from any directory. The correct way to do this would be to make a symbolic link. However, I get the following: ln -s /Applications/SageMath-6.10.app/Contents/Resources/sage/sage /usr/lo

[sage-support] Sage on Mac OS X 10.11 (El Capitan)

2015-10-11 Thread Thomas Judson
I finally had some time to play with Sage on El Capitan. I haven’t able to build Sage even if I disabled SIP. Perhaps someone smarter than me could change the paths and get the job done, but I didn’t want to experiment without some idea of what I was doing. The good news is that I was able to

[sage-support] Sage on Mac OS X 10.11

2015-10-06 Thread Thomas Judson
Has anyone been able to get Sage running on El Capitan? The app for Sage 6.8 doesn’t work. I downloaded sage-6.9.rc2 and tried to build everything from the source code. After installing the latest version of Xcode and MacPorts, I was able to get the build underway. However, everything crashe

[sage-support] Fwd: Sage Code

2015-10-01 Thread Thomas Judson
Does anyone have any idea what is going on with the following code? var('t') g = 9.8 m = 80 c = 1/(2*sqrt(3)) f(x) = tanh(x) v(t) = sqrt(g*m/c)*f(sqrt(g*c/m)*t) T = 18.13 sum(v(t)*T/800 for t in srange(0,T,T/800)).n(digits=8) sum(v(t)*T/800 for t in srange(0,T,T/800)).n(digits=7) sum(v(t)*T/800 fo