Re: [sage-devel] Re: Installing sagemath on macOS

2024-02-06 Thread Sai Chandhrasekhar
I also tried to run the install command again with the --pre flag and got the same result. On Tuesday, February 6, 2024 at 5:54:11 PM UTC-6 Sai Chandhrasekhar wrote: > On Tuesday, February 6, 2024 at 5:14:56 PM UTC-6 Matthias Koeppe wrote: > >> >> and >> /Users/user/.sage/sage-10.2-Darwin-x86_

Re: [sage-devel] Re: Installing sagemath on macOS

2024-02-06 Thread Sai Chandhrasekhar
On Tuesday, February 6, 2024 at 5:14:56 PM UTC-6 Matthias Koeppe wrote: > > and > /Users/user/.sage/sage-10.2-Darwin-x86_64/local/var/tmp/sage/build/libatomic_ops-7.8.0/src/config.log > > please > > On Tuesday, February 6, 2024 at 2:36:21 PM UTC-8 Sai Chandhrasekhar wrote: > >> On Tuesday, Febr

Re: [sage-devel] Re: Installing sagemath on macOS

2024-02-06 Thread Matthias Koeppe
and /Users/user/.sage/sage-10.2-Darwin-x86_64/local/var/tmp/sage/build/libatomic_ops-7.8.0/src/config.log please On Tuesday, February 6, 2024 at 2:36:21 PM UTC-8 Sai Chandhrasekhar wrote: > On Tuesday, February 6, 2024 at 4:22:59 PM UTC-6 Matthias Koeppe wrote: > >> Could you post one of these

Re: [sage-devel] Re: Installing sagemath on macOS

2024-02-06 Thread Sai Chandhrasekhar
On Tuesday, February 6, 2024 at 4:22:59 PM UTC-6 Matthias Koeppe wrote: > Could you post one of these log files please? For example info-6.8.log > > And could you try "python3 -m pip install --pre sage_conf" also? > > On Tuesday, February 6, 2024 at 12:15:08 PM UTC-8 Sai Chandhrasekhar wrote: > >>

Re: [sage-devel] Re: Installing sagemath on macOS

2024-02-06 Thread Matthias Koeppe
Could you post one of these log files please? For example info-6.8.log And could you try "python3 -m pip install --pre sage_conf" also? On Tuesday, February 6, 2024 at 12:15:08 PM UTC-8 Sai Chandhrasekhar wrote: > When I ran python3 -m pip install sage_conf I got this error message: > > Error bu

Re: [sage-devel] Re: Installing sagemath on macOS

2024-02-06 Thread Sai Chandhrasekhar
When I ran python3 -m pip install sage_conf I got this error message: Error building Sage. The following package(s) may have failed to build (not necessarily during this run of 'make all-build'): * package: gf2x-1.3.0 last build time: Feb 6 14:

Re: [sage-devel] Re: Installing sagemath on macOS

2024-02-06 Thread Dima Pasechnik
On 6 February 2024 16:50:13 GMT, Sai Chandhrasekhar wrote: >How do I change clang to GCC? hmm, what do you mean? You cannot build Sage on macOS with gcc (not "gcc" the alias of clang, but real gcc from gcc.gnu.org project). The problem is that gcc cannot compile some of macOS headers. >O

Re: [sage-devel] Re: Installing sagemath on macOS

2024-02-06 Thread Matthias Koeppe
According to your config.log, the run of "configure" succeeded. That config.log contains error messages from various compiler invocations is a normal part of the configure process. What is the actual problem that you encountered? On Monday, February 5, 2024 at 2:58:36 PM UTC-8 Sai Chandhrasekh

[sage-devel] SageMath app not found

2024-02-06 Thread Sai Chandhrasekhar
I installed Sage 10.1 using the process detailed in the README. However, when I try to run a Python program that uses Sage, I get the message 'Could not find SageMath-10.1.app' and I get an error message that the import 'sage.all_cmdline' cannot be resolved. Are there any potential reasons this

Re: [sage-devel] Re: Installing sagemath on macOS

2024-02-06 Thread Sai Chandhrasekhar
How do I change clang to GCC? On Monday, February 5, 2024 at 4:58:36 PM UTC-6 Sai Chandhrasekhar wrote: > On Monday, February 5, 2024 at 4:48:08 PM UTC-6 Dima Pasechnik wrote: > >> >> >> On 5 February 2024 21:58:54 GMT, "dan...@gmail.com" >> wrote: >> >You could just use Sage_macOS >> >

[sage-devel] Regarding sphinx directives

2024-02-06 Thread Janmenjaya Panda
Hello, Is *.. raw:: latex *sphinx directive supported by sage (for documentations)? I searched for the list of sphinx directives suppored/ allowed by sage and I got the following info: Note about Sphinx directives vs. other blocks

Re: [sage-devel] SuiteSparse and sage and sparse_matrix.LU()

2024-02-06 Thread Dima Pasechnik
Non-square case for LU is in fact easy. Note that if you have A=LU as a block matrix A11 A12 A21 A22 then its LU-factors L and U are L11 0andU11 U12 L21 L22 0 U22 and A11=L11 U11, A12=L11 U12, A21=L21 U11, A22=L21 U12+L22 U22 Assume that A11 is square and full rank