[sage-support] Re: Who to contact to re-join Zulip chat

2025-01-02 Thread Pranav Setpal
woah, i had no clue about that page. thank you! On Thursday, January 2, 2025 at 8:20:13 PM UTC-4 Kwankyu wrote: > There is a hint at https://github.com/sagemath/sage/wiki/Infrastructure -- You received this message because you are subscribed to the Google Groups "sage-support" group. To unsubs

[sage-support] Re: sage-doc-html + urllib3 + openSSL problem when building from source on M4 Macbook

2025-01-02 Thread Dima Pasechnik
/usr/bin/python3 you end up using is no good for using with Sage (and unfortunately our ./configure doesn't see it), that's why. I suggested to install python3.12 in Homebrew and use it instead. (because building Sage's python is broken on your macOS version, too, there aren't many other easy opt

[sage-support] Re: Who to contact to re-join Zulip chat

2025-01-02 Thread Kwankyu
There is a hint at https://github.com/sagemath/sage/wiki/Infrastructure -- 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-support+unsubscr...@googlegroups.com

Re: [sage-support] Error building sage 10.6.beta2: braiding function

2025-01-02 Thread Dima Pasechnik
No error log was attached On 2 January 2025 18:15:47 GMT-05:00, Pranav Setpal wrote: >Hello, I am trying to build sage 10.6.beta2 on NixOS. I followed what was >mentioned >here(https://github.com/NixOS/nixpkgs/tree/nixos-unstable/pkgs/by-name/sa/sage#i-want-to-update-sage) > >to do the same

[sage-support] Error building sage 10.6.beta2: braiding function

2025-01-02 Thread Pranav Setpal
Hello, I am trying to build sage 10.6.beta2 on NixOS. I followed what was mentioned here(https://github.com/NixOS/nixpkgs/tree/nixos-unstable/pkgs/by-name/sa/sage#i-want-to-update-sage) to do the same (just change version number [and hash] and build). The build error seems to be from `build/cy

[sage-support] Re: Implementing linear maps and their inverses in SageMath and Magma

2025-01-02 Thread Kwankyu
X_matrix = matrix([[f.evaluate(p) for p in places] for f in B1]).transpose() will work for you. -- 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-support+uns

[sage-support] Re: Implementing linear maps and their inverses in SageMath and Magma

2025-01-02 Thread Sai Chandhrasekhar
The solution you proposed worked. What is the explanation for why it worked? I am now trying to implement Y in SageMath. B2 = (2*G).basis_function_space() R. = Fq[] Q = R.irreducible_element(16) L. = Fq.extension(Q) div = Q(x).divisor() P = None; for place in div.support(): if(place.degree()

Re: [sage-support] Unable to build sage from source on M4 Macbook

2025-01-02 Thread Pavel Galashin
Thank you! Python was already installed by Homebrew but somehow not attached to the command ``python``, only to ``python3``. I symlinked one to the other and made progress (still getting another error but much later in the process and unrelated to python - will post in a different thread). On T

Re: [sage-support] sage-doc-html + urllib3 + openSSL problem when building from source on M4 Macbook

2025-01-02 Thread Jackson Walters
I believe I had a similar (unresolved) problem: https://groups.google.com/g/sage-support/c/mtPb1-3f54Y/m/PCYl682iAgAJ Error building Sage. > The following package(s) may have failed to build (not necessarily > during this run of 'make all-start'): > * package: sagemath_doc_html-none > l

Re: [sage-support] Unable to build sage from source on M4 Macbook

2025-01-02 Thread Dima Pasechnik
Why won't you use Python from Homebrew? Not that it explains your error, but they know how to build Python on macOS. On 2 January 2025 06:27:09 GMT-05:00, Pavel Galashin wrote: >Hi all, > >I am trying to build a local sage version for development and keep running >into the below problem. > >I h

Re: [sage-support] Unable to build sage from source on M4 Macbook

2025-01-02 Thread Dima Pasechnik
You can install Homebrew's Python 3.12 : brew install python@3.12 and run ./configure --with-python=python3.12 to tell Sage to use it and do not build Python. On 2 January 2025 06:27:09 GMT-05:00, Pavel Galashin wrote: >Hi all, > >I am trying to build a local sage version for de

[sage-support] Implementing linear maps and their inverses in SageMath and Magma

2025-01-02 Thread Sai Chandhrasekhar
Cross-post from: https://ask.sagemath.org/question/80862/implementing-linear-maps-and-their-inverses-in-sagemath-and-magma/ I am currently trying to implement the linear maps in this post: https://math.stackexchange.com/questions/5015461/computing-the-inverses-of-two-linear-maps in Magma and S