Re: [sage-support] Re: Failed Sage 9.0 build on Catalina

2020-01-13 Thread Dima Pasechnik
On Mon, 13 Jan 2020, 17:08 kcrisman, wrote: > > > On Monday, January 13, 2020 at 11:15:19 AM UTC-5, Dima Pasechnik wrote: >> >> the issue is with "improved" security settings on MacOS 10.15. >> I don't have access to 10.15, so I can't give details... >> > > So maybe it's not just the app version

Re: [sage-support] Re: Failed Sage 9.0 build on Catalina

2020-01-13 Thread kcrisman
On Monday, January 13, 2020 at 11:15:19 AM UTC-5, Dima Pasechnik wrote: > > the issue is with "improved" security settings on MacOS 10.15. > I don't have access to 10.15, so I can't give details... > So maybe it's not just the app version that is going to give problems, just prebuilt binaries

Re: [sage-support] Re: Failed Sage 9.0 build on Catalina

2020-01-13 Thread Dima Pasechnik
the issue is with "improved" security settings on MacOS 10.15. I don't have access to 10.15, so I can't give details... On Mon, Jan 13, 2020 at 3:59 PM Rachel Player wrote: > > I am also having trouble installing Sage on macOS Catalina 10.15.2. > > The issue appears to be with the internal versio

[sage-support] Re: Failed Sage 9.0 build on Catalina

2020-01-13 Thread Rachel Player
I am also having trouble installing Sage on macOS Catalina 10.15.2. The issue appears to be with the internal version of python. Here’s what I did: - - Downloaded sage-9.0-OSX_10.15.2-x86_64.tar.bz2 - - Opened with tar -xzf sage-9.0-OSX_10.15.2-x86_64.tar.bz2 - - Cd’d into SageMath

Re: [sage-support] Mixing GP and @interact inside Sage Cell

2020-01-13 Thread Vincent Delecroix
If you want to interact with PARI/GP it is much better (= faster and more reliable) to use the cypari interface. Namely sage: s = pari('square(x)=x^2') sage: s(20) 400 If you want to convert the output of s(20) (a "Gen") then use sage: s(20).sage() 400 sage: type(s20) sage: type(s(20).sage())