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
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
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
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
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())