Re: [sage-support] Re: solving a linear system of GF(3) -- strange TypeError

2019-10-09 Thread Dima Pasechnik
This is now https://trac.sagemath.org/ticket/28586

It would be great not to have to do git bisect on this, anyone can point
out to a suspect ticket?
Thanks!

On Thu, Oct 10, 2019 at 12:06 AM Robert Samal 
wrote:

> Indeed it works in Sage 8.4.
> Thanks!
>
> On Wednesday, October 9, 2019 at 8:34:41 AM UTC-7, Dima Pasechnik wrote:
>>
>> This got broken in Sage 8.5.
>> (still works in 8.4)
>>
>>
>>
>> On Wed, Oct 9, 2019 at 6:09 AM David Joyner  wrote:
>>
>>>
>>>
>>> On Wed, Oct 9, 2019 at 1:33 AM Robert Samal  wrote:
>>>
 Sorry, F=GF(3), I made my original example shorter and didn't read it
 properly.

 So the full problematic code is

 B=matrix(GF(3), 2,2,[1,0,1,0], sparse=True)
 v=vector(GF(3), [1,1])
 B.solve_right(v)


>>> Yes. I can confirm it works with "sparse=True" removed *or* if GF(3) is
>>> replaced by ZZ.
>>> So there's an easy workaround but maybe the docs or the code has a bug?
>>> Thanks for reporting.
>>>
>>> Thanks,

 Robert


 On Tuesday, October 8, 2019 at 5:17:59 PM UTC-7, Robert Samal wrote:
>
> I am trying to solve a rather large linear systems of equations of
> GF(3). As the matrices are sparse, I thought that adding "sparse=True" to
> the constructor of the matrix could be of help. However, I ran to a 
> strange
> error message.
>
> B=matrix(GF(3), 2,2,[1,0,1,0], sparse=True)
> v=vector(F, [1,1])
> B.solve_right(v)
>
> The above code yields the following
>
> TypeError: Cannot convert 
> sage.matrix.matrix_modn_sparse.Matrix_modn_sparse to 
> sage.matrix.matrix_integer_sparse.Matrix_integer_sparse
>
>
> I am hesitant to paste the whole error message here, but it ends with 
> reference to file
> SageMath/local/lib/python2.7/site-packages/sage/matrix/matrix_modn_sparse.pyx
>  in
> sage.matrix.matrix_modn_sparse.Matrix_modn_sparse._solve_matrix_linbox
> (build/cythonized/sage/matrix/matrix_modn_sparse.cpp:11633).
>
> I am using Sage 8.9, but the same issue was on 8.7 as well.
>
> Few other observations:
> -- works as expected for dense matrices -- or for sparse ones over 
> integers
> -- the same issue occurs whether y is a vector or a matrix
> -- It behaves the same for systems with no solution.
>
> Is there some hidden limitation of sparse matrices over finite fields?
> I.e., is it a bug or feature? :-)
> I tried to RTFM, but couldn't find this discussed. The page for sparse 
> matrices over
> finite fields does not exactly promise the solve method, but it does not 
> mention it
> would not work either. Is it possible to achieve what I want by other 
> means (in Sage).
>
> Thanks.
>
>
>
>
> --
 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-s...@googlegroups.com.
 To view this discussion on the web visit
 https://groups.google.com/d/msgid/sage-support/6ac68e19-7c5a-4be1-ba10-1bac22cddc62%40googlegroups.com
 
 .

>>> --
>>> 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-s...@googlegroups.com.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/sage-support/CAEQuuAWQYKhtkVme8wHkJTj38QkmfnSJf3_Lhtqj9PxJmq8HcQ%40mail.gmail.com
>>> 
>>> .
>>>
>> --
> 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.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/sage-support/5ce4410e-1ee7-4ebd-a5a6-903e893c1b77%40googlegroups.com
> 
> .
>

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/sage-support/CAAWYfq3Vx0K5YT_WM_M280f1%2B_5uQp0vuPYrHGaVdncR1vC2Aw%40mail.gmail.com.


Re: [sage-support] Re: solving a linear system of GF(3) -- strange TypeError

2019-10-09 Thread Robert Samal
Indeed it works in Sage 8.4. 
Thanks!

On Wednesday, October 9, 2019 at 8:34:41 AM UTC-7, Dima Pasechnik wrote:
>
> This got broken in Sage 8.5.
> (still works in 8.4)
>
>
>
> On Wed, Oct 9, 2019 at 6:09 AM David Joyner  > wrote:
>
>>
>>
>> On Wed, Oct 9, 2019 at 1:33 AM Robert Samal > > wrote:
>>
>>> Sorry, F=GF(3), I made my original example shorter and didn't read it 
>>> properly. 
>>>
>>> So the full problematic code is
>>>
>>> B=matrix(GF(3), 2,2,[1,0,1,0], sparse=True)
>>> v=vector(GF(3), [1,1])
>>> B.solve_right(v)
>>>
>>>
>> Yes. I can confirm it works with "sparse=True" removed *or* if GF(3) is 
>> replaced by ZZ.
>> So there's an easy workaround but maybe the docs or the code has a bug? 
>> Thanks for reporting. 
>>
>> Thanks, 
>>>
>>> Robert
>>>
>>>
>>> On Tuesday, October 8, 2019 at 5:17:59 PM UTC-7, Robert Samal wrote:

 I am trying to solve a rather large linear systems of equations of 
 GF(3). As the matrices are sparse, I thought that adding "sparse=True" to 
 the constructor of the matrix could be of help. However, I ran to a 
 strange 
 error message. 

 B=matrix(GF(3), 2,2,[1,0,1,0], sparse=True)
 v=vector(F, [1,1])
 B.solve_right(v)

 The above code yields the following

 TypeError: Cannot convert 
 sage.matrix.matrix_modn_sparse.Matrix_modn_sparse to 
 sage.matrix.matrix_integer_sparse.Matrix_integer_sparse


 I am hesitant to paste the whole error message here, but it ends with 
 reference to file 
 SageMath/local/lib/python2.7/site-packages/sage/matrix/matrix_modn_sparse.pyx
  in 
 sage.matrix.matrix_modn_sparse.Matrix_modn_sparse._solve_matrix_linbox 
 (build/cythonized/sage/matrix/matrix_modn_sparse.cpp:11633). 

 I am using Sage 8.9, but the same issue was on 8.7 as well. 

 Few other observations:
 -- works as expected for dense matrices -- or for sparse ones over integers
 -- the same issue occurs whether y is a vector or a matrix
 -- It behaves the same for systems with no solution.

 Is there some hidden limitation of sparse matrices over finite fields? 
 I.e., is it a bug or feature? :-) 
 I tried to RTFM, but couldn't find this discussed. The page for sparse 
 matrices over
 finite fields does not exactly promise the solve method, but it does not 
 mention it 
 would not work either. Is it possible to achieve what I want by other 
 means (in Sage). 

 Thanks. 




 -- 
>>> 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-s...@googlegroups.com .
>>> To view this discussion on the web visit 
>>> https://groups.google.com/d/msgid/sage-support/6ac68e19-7c5a-4be1-ba10-1bac22cddc62%40googlegroups.com
>>>  
>>> 
>>> .
>>>
>> -- 
>> 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-s...@googlegroups.com .
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/sage-support/CAEQuuAWQYKhtkVme8wHkJTj38QkmfnSJf3_Lhtqj9PxJmq8HcQ%40mail.gmail.com
>>  
>> 
>> .
>>
>

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/sage-support/5ce4410e-1ee7-4ebd-a5a6-903e893c1b77%40googlegroups.com.


Re: [sage-support] SageMath installation in macOS Catalina

2019-10-09 Thread George
Hi,

I tried Sage 8.8 (the app) following Tom's comment and it seems to work 
(thanks Tom). 

I'll try building from source and see how it goes. 

Thanks a lot for your responses. 

Any additional updates/news are very welcome in case others are facing 
similar problems. 

Thanks,
G

On Wednesday, October 9, 2019 at 7:55:27 PM UTC+2, John H Palmieri wrote:
>
>
>
> On Wednesday, October 9, 2019 at 4:51:48 AM UTC-7, David Joyner wrote:
>>
>>
>>
>> On Wed, Oct 9, 2019 at 7:42 AM Dima Pasechnik  wrote:
>>
>>>
>>>
>>> On Wed, Oct 9, 2019 at 6:34 AM David Joyner  wrote:
>>>


 On Wed, Oct 9, 2019 at 7:14 AM Dima Pasechnik  wrote:

> Hi,
>
> On Wed, Oct 9, 2019 at 6:03 AM George  wrote:
>
>> Hi David,
>>
>> Thanks for the update and information.
>>
>> building from source should still work.
> Did you try this ?
>

 I did. It chokes on the gfortran build:

 ...

 [gfortran-7.4.0] make[7]: *** [gets-chk.lo] Error 1

 [gfortran-7.4.0] make[6]: *** [all] Error 2

 [gfortran-7.4.0] make[5]: *** [all-target-libssp] Error 2

 [gfortran-7.4.0] make[4]: *** [all] Error 2

 [gfortran-7.4.0] 
 

 [gfortran-7.4.0] Error building gfortran-7.4.0

 [gfortran-7.4.0] 
 


  

>>> is there Homebrew for  Catalina?
>>> Then one can use its gfortran.
>>>
>>>
>> I googled around. Apparently the answer is no
>> (or not as of a few days ago anyway).
>>
>
> On a recent beta release of Catalina, I used homebrew to install gfortran, 
> and it went fine, allowing me to build Sage from scratch. I haven't yet 
> tried with the actual release of Catalina, but I will soon.
>
>   John
>
>  
>
>>  
>>
>>>
>>>
> Dima
>
>> G
>>
>> On Wednesday, October 9, 2019 at 1:00:37 PM UTC+2, David Joyner wrote:
>>>
>>>
>>>
>>> On Wed, Oct 9, 2019 at 6:45 AM George  wrote:
>>>
 Hi,

 I upgraded to the new macOS Catalina and SageMath won't install. I 
 get errors like "python2.7 cannot be opened because the developer 
 cannot be 
 verified" and for numerous other components as well. 

 Is anyone having the same problem? Any tips, advice or ideas on 
 what is going on and how to fix this?


>>> I can confirm this issue. The problem is also discussed in the thread
>>>
>>> https://groups.google.com/forum/?utm_medium=email_source=footer#!msg/sage-support/4dUg8mbiDYw/u5o-U9QBCAAJ
>>> That's all I know.
>>>  
>>>
 Thanks a lot,
 G

 -- 
 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-s...@googlegroups.com.
 To view this discussion on the web visit 
 https://groups.google.com/d/msgid/sage-support/e69a4235-ec1b-465e-98da-635ed8be1b23%40googlegroups.com
  
 
 .

>>> -- 
>> 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-s...@googlegroups.com.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/sage-support/1cd586e5-35af-4e39-9322-8e055c144601%40googlegroups.com
>>  
>> 
>> .
>>
> -- 
> 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-s...@googlegroups.com.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/sage-support/CAAWYfq0ZBO74cNDnkb33ywH7KkGUNci%3DMxXm5Dsoq5ak-mWb9Q%40mail.gmail.com
>  
> 
> .
>
 -- 
 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-s...@googlegroups.com.
 To view this discussion on the web visit 
 https://groups.google.com/d/msgid/sage-support/CAEQuuAWOOuPVgzgGdysYwz3oJ%3DxxV%3DNvj-ePKH__CYTe3x0p%2Bg%40mail.gmail.com
  
 

Re: [sage-support] SageMath installation in macOS Catalina

2019-10-09 Thread John H Palmieri


On Wednesday, October 9, 2019 at 4:51:48 AM UTC-7, David Joyner wrote:
>
>
>
> On Wed, Oct 9, 2019 at 7:42 AM Dima Pasechnik  > wrote:
>
>>
>>
>> On Wed, Oct 9, 2019 at 6:34 AM David Joyner > > wrote:
>>
>>>
>>>
>>> On Wed, Oct 9, 2019 at 7:14 AM Dima Pasechnik >> > wrote:
>>>
 Hi,

 On Wed, Oct 9, 2019 at 6:03 AM George > 
 wrote:

> Hi David,
>
> Thanks for the update and information.
>
> building from source should still work.
 Did you try this ?

>>>
>>> I did. It chokes on the gfortran build:
>>>
>>> ...
>>>
>>> [gfortran-7.4.0] make[7]: *** [gets-chk.lo] Error 1
>>>
>>> [gfortran-7.4.0] make[6]: *** [all] Error 2
>>>
>>> [gfortran-7.4.0] make[5]: *** [all-target-libssp] Error 2
>>>
>>> [gfortran-7.4.0] make[4]: *** [all] Error 2
>>>
>>> [gfortran-7.4.0] 
>>> 
>>>
>>> [gfortran-7.4.0] Error building gfortran-7.4.0
>>>
>>> [gfortran-7.4.0] 
>>> 
>>>
>>>
>>>  
>>>
>> is there Homebrew for  Catalina?
>> Then one can use its gfortran.
>>
>>
> I googled around. Apparently the answer is no
> (or not as of a few days ago anyway).
>

On a recent beta release of Catalina, I used homebrew to install gfortran, 
and it went fine, allowing me to build Sage from scratch. I haven't yet 
tried with the actual release of Catalina, but I will soon.

  John

 

>  
>
>>
>>
 Dima

> G
>
> On Wednesday, October 9, 2019 at 1:00:37 PM UTC+2, David Joyner wrote:
>>
>>
>>
>> On Wed, Oct 9, 2019 at 6:45 AM George  wrote:
>>
>>> Hi,
>>>
>>> I upgraded to the new macOS Catalina and SageMath won't install. I 
>>> get errors like "python2.7 cannot be opened because the developer 
>>> cannot be 
>>> verified" and for numerous other components as well. 
>>>
>>> Is anyone having the same problem? Any tips, advice or ideas on what 
>>> is going on and how to fix this?
>>>
>>>
>> I can confirm this issue. The problem is also discussed in the thread
>>
>> https://groups.google.com/forum/?utm_medium=email_source=footer#!msg/sage-support/4dUg8mbiDYw/u5o-U9QBCAAJ
>> That's all I know.
>>  
>>
>>> Thanks a lot,
>>> G
>>>
>>> -- 
>>> 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-s...@googlegroups.com.
>>> To view this discussion on the web visit 
>>> https://groups.google.com/d/msgid/sage-support/e69a4235-ec1b-465e-98da-635ed8be1b23%40googlegroups.com
>>>  
>>> 
>>> .
>>>
>> -- 
> 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-s...@googlegroups.com .
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/sage-support/1cd586e5-35af-4e39-9322-8e055c144601%40googlegroups.com
>  
> 
> .
>
 -- 
 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-s...@googlegroups.com .
 To view this discussion on the web visit 
 https://groups.google.com/d/msgid/sage-support/CAAWYfq0ZBO74cNDnkb33ywH7KkGUNci%3DMxXm5Dsoq5ak-mWb9Q%40mail.gmail.com
  
 
 .

>>> -- 
>>> 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-s...@googlegroups.com .
>>> To view this discussion on the web visit 
>>> https://groups.google.com/d/msgid/sage-support/CAEQuuAWOOuPVgzgGdysYwz3oJ%3DxxV%3DNvj-ePKH__CYTe3x0p%2Bg%40mail.gmail.com
>>>  
>>> 
>>> .
>>>
>> -- 
>> 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-s...@googlegroups.com .
>> To view this discussion on the web visit 
>> 

Re: [sage-support] SageMath installation in macOS Catalina

2019-10-09 Thread Tom Judson
I had Sage 8.8 (the app) installed under Mojave.  I upgraded to Catalina, 
and everything seems to work fine.

Tom

On Wednesday, October 9, 2019 at 6:51:48 AM UTC-5, David Joyner wrote:
>
>
>
> On Wed, Oct 9, 2019 at 7:42 AM Dima Pasechnik  > wrote:
>
>>
>>
>> On Wed, Oct 9, 2019 at 6:34 AM David Joyner > > wrote:
>>
>>>
>>>
>>> On Wed, Oct 9, 2019 at 7:14 AM Dima Pasechnik >> > wrote:
>>>
 Hi,

 On Wed, Oct 9, 2019 at 6:03 AM George > 
 wrote:

> Hi David,
>
> Thanks for the update and information.
>
> building from source should still work.
 Did you try this ?

>>>
>>> I did. It chokes on the gfortran build:
>>>
>>> ...
>>>
>>> [gfortran-7.4.0] make[7]: *** [gets-chk.lo] Error 1
>>>
>>> [gfortran-7.4.0] make[6]: *** [all] Error 2
>>>
>>> [gfortran-7.4.0] make[5]: *** [all-target-libssp] Error 2
>>>
>>> [gfortran-7.4.0] make[4]: *** [all] Error 2
>>>
>>> [gfortran-7.4.0] 
>>> 
>>>
>>> [gfortran-7.4.0] Error building gfortran-7.4.0
>>>
>>> [gfortran-7.4.0] 
>>> 
>>>
>>>
>>>  
>>>
>> is there Homebrew for  Catalina?
>> Then one can use its gfortran.
>>
>>
> I googled around. Apparently the answer is no
> (or not as of a few days ago anyway).
>  
>
>>
>>
 Dima

> G
>
> On Wednesday, October 9, 2019 at 1:00:37 PM UTC+2, David Joyner wrote:
>>
>>
>>
>> On Wed, Oct 9, 2019 at 6:45 AM George  wrote:
>>
>>> Hi,
>>>
>>> I upgraded to the new macOS Catalina and SageMath won't install. I 
>>> get errors like "python2.7 cannot be opened because the developer 
>>> cannot be 
>>> verified" and for numerous other components as well. 
>>>
>>> Is anyone having the same problem? Any tips, advice or ideas on what 
>>> is going on and how to fix this?
>>>
>>>
>> I can confirm this issue. The problem is also discussed in the thread
>>
>> https://groups.google.com/forum/?utm_medium=email_source=footer#!msg/sage-support/4dUg8mbiDYw/u5o-U9QBCAAJ
>> That's all I know.
>>  
>>
>>> Thanks a lot,
>>> G
>>>
>>> -- 
>>> 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-s...@googlegroups.com.
>>> To view this discussion on the web visit 
>>> https://groups.google.com/d/msgid/sage-support/e69a4235-ec1b-465e-98da-635ed8be1b23%40googlegroups.com
>>>  
>>> 
>>> .
>>>
>> -- 
> 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-s...@googlegroups.com .
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/sage-support/1cd586e5-35af-4e39-9322-8e055c144601%40googlegroups.com
>  
> 
> .
>
 -- 
 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-s...@googlegroups.com .
 To view this discussion on the web visit 
 https://groups.google.com/d/msgid/sage-support/CAAWYfq0ZBO74cNDnkb33ywH7KkGUNci%3DMxXm5Dsoq5ak-mWb9Q%40mail.gmail.com
  
 
 .

>>> -- 
>>> 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-s...@googlegroups.com .
>>> To view this discussion on the web visit 
>>> https://groups.google.com/d/msgid/sage-support/CAEQuuAWOOuPVgzgGdysYwz3oJ%3DxxV%3DNvj-ePKH__CYTe3x0p%2Bg%40mail.gmail.com
>>>  
>>> 
>>> .
>>>
>> -- 
>> 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-s...@googlegroups.com .
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/sage-support/CAAWYfq2d7ibBfTaz4dQNuWjTjFA0rL0U_r1ggmXTMJiz-%2B77YQ%40mail.gmail.com
>>  
>> 

Re: [sage-support] Re: solving a linear system of GF(3) -- strange TypeError

2019-10-09 Thread Dima Pasechnik
This got broken in Sage 8.5.
(still works in 8.4)



On Wed, Oct 9, 2019 at 6:09 AM David Joyner  wrote:

>
>
> On Wed, Oct 9, 2019 at 1:33 AM Robert Samal 
> wrote:
>
>> Sorry, F=GF(3), I made my original example shorter and didn't read it
>> properly.
>>
>> So the full problematic code is
>>
>> B=matrix(GF(3), 2,2,[1,0,1,0], sparse=True)
>> v=vector(GF(3), [1,1])
>> B.solve_right(v)
>>
>>
> Yes. I can confirm it works with "sparse=True" removed *or* if GF(3) is
> replaced by ZZ.
> So there's an easy workaround but maybe the docs or the code has a bug?
> Thanks for reporting.
>
> Thanks,
>>
>> Robert
>>
>>
>> On Tuesday, October 8, 2019 at 5:17:59 PM UTC-7, Robert Samal wrote:
>>>
>>> I am trying to solve a rather large linear systems of equations of
>>> GF(3). As the matrices are sparse, I thought that adding "sparse=True" to
>>> the constructor of the matrix could be of help. However, I ran to a strange
>>> error message.
>>>
>>> B=matrix(GF(3), 2,2,[1,0,1,0], sparse=True)
>>> v=vector(F, [1,1])
>>> B.solve_right(v)
>>>
>>> The above code yields the following
>>>
>>> TypeError: Cannot convert sage.matrix.matrix_modn_sparse.Matrix_modn_sparse 
>>> to sage.matrix.matrix_integer_sparse.Matrix_integer_sparse
>>>
>>>
>>> I am hesitant to paste the whole error message here, but it ends with 
>>> reference to file
>>> SageMath/local/lib/python2.7/site-packages/sage/matrix/matrix_modn_sparse.pyx
>>>  in
>>> sage.matrix.matrix_modn_sparse.Matrix_modn_sparse._solve_matrix_linbox
>>> (build/cythonized/sage/matrix/matrix_modn_sparse.cpp:11633).
>>>
>>> I am using Sage 8.9, but the same issue was on 8.7 as well.
>>>
>>> Few other observations:
>>> -- works as expected for dense matrices -- or for sparse ones over integers
>>> -- the same issue occurs whether y is a vector or a matrix
>>> -- It behaves the same for systems with no solution.
>>>
>>> Is there some hidden limitation of sparse matrices over finite fields?
>>> I.e., is it a bug or feature? :-)
>>> I tried to RTFM, but couldn't find this discussed. The page for sparse 
>>> matrices over
>>> finite fields does not exactly promise the solve method, but it does not 
>>> mention it
>>> would not work either. Is it possible to achieve what I want by other means 
>>> (in Sage).
>>>
>>> Thanks.
>>>
>>>
>>>
>>>
>>> --
>> 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.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/sage-support/6ac68e19-7c5a-4be1-ba10-1bac22cddc62%40googlegroups.com
>> 
>> .
>>
> --
> 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.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/sage-support/CAEQuuAWQYKhtkVme8wHkJTj38QkmfnSJf3_Lhtqj9PxJmq8HcQ%40mail.gmail.com
> 
> .
>

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/sage-support/CAAWYfq0g7uzjcPfs69Q8yW54_GrEjGG3gxXar46XWReXrqVfAQ%40mail.gmail.com.


Re: [sage-support] SageMath installation in macOS Catalina

2019-10-09 Thread David Joyner
On Wed, Oct 9, 2019 at 7:42 AM Dima Pasechnik  wrote:

>
>
> On Wed, Oct 9, 2019 at 6:34 AM David Joyner  wrote:
>
>>
>>
>> On Wed, Oct 9, 2019 at 7:14 AM Dima Pasechnik  wrote:
>>
>>> Hi,
>>>
>>> On Wed, Oct 9, 2019 at 6:03 AM George  wrote:
>>>
 Hi David,

 Thanks for the update and information.

 building from source should still work.
>>> Did you try this ?
>>>
>>
>> I did. It chokes on the gfortran build:
>>
>> ...
>>
>> [gfortran-7.4.0] make[7]: *** [gets-chk.lo] Error 1
>>
>> [gfortran-7.4.0] make[6]: *** [all] Error 2
>>
>> [gfortran-7.4.0] make[5]: *** [all-target-libssp] Error 2
>>
>> [gfortran-7.4.0] make[4]: *** [all] Error 2
>>
>> [gfortran-7.4.0]
>> 
>>
>> [gfortran-7.4.0] Error building gfortran-7.4.0
>>
>> [gfortran-7.4.0]
>> 
>>
>>
>>
>>
> is there Homebrew for  Catalina?
> Then one can use its gfortran.
>
>
I googled around. Apparently the answer is no
(or not as of a few days ago anyway).


>
>
>>> Dima
>>>
 G

 On Wednesday, October 9, 2019 at 1:00:37 PM UTC+2, David Joyner wrote:
>
>
>
> On Wed, Oct 9, 2019 at 6:45 AM George  wrote:
>
>> Hi,
>>
>> I upgraded to the new macOS Catalina and SageMath won't install. I
>> get errors like "python2.7 cannot be opened because the developer cannot 
>> be
>> verified" and for numerous other components as well.
>>
>> Is anyone having the same problem? Any tips, advice or ideas on what
>> is going on and how to fix this?
>>
>>
> I can confirm this issue. The problem is also discussed in the thread
>
> https://groups.google.com/forum/?utm_medium=email_source=footer#!msg/sage-support/4dUg8mbiDYw/u5o-U9QBCAAJ
> That's all I know.
>
>
>> Thanks a lot,
>> G
>>
>> --
>> 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-s...@googlegroups.com.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/sage-support/e69a4235-ec1b-465e-98da-635ed8be1b23%40googlegroups.com
>> 
>> .
>>
> --
 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.
 To view this discussion on the web visit
 https://groups.google.com/d/msgid/sage-support/1cd586e5-35af-4e39-9322-8e055c144601%40googlegroups.com
 
 .

>>> --
>>> 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.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/sage-support/CAAWYfq0ZBO74cNDnkb33ywH7KkGUNci%3DMxXm5Dsoq5ak-mWb9Q%40mail.gmail.com
>>> 
>>> .
>>>
>> --
>> 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.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/sage-support/CAEQuuAWOOuPVgzgGdysYwz3oJ%3DxxV%3DNvj-ePKH__CYTe3x0p%2Bg%40mail.gmail.com
>> 
>> .
>>
> --
> 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.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/sage-support/CAAWYfq2d7ibBfTaz4dQNuWjTjFA0rL0U_r1ggmXTMJiz-%2B77YQ%40mail.gmail.com
> 
> .
>

-- 
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.
To view 

Re: [sage-support] SageMath installation in macOS Catalina

2019-10-09 Thread David Joyner
On Wed, Oct 9, 2019 at 7:14 AM Dima Pasechnik  wrote:

> Hi,
>
> On Wed, Oct 9, 2019 at 6:03 AM George  wrote:
>
>> Hi David,
>>
>> Thanks for the update and information.
>>
>> building from source should still work.
> Did you try this ?
>

I did. It chokes on the gfortran build:

...

[gfortran-7.4.0] make[7]: *** [gets-chk.lo] Error 1

[gfortran-7.4.0] make[6]: *** [all] Error 2

[gfortran-7.4.0] make[5]: *** [all-target-libssp] Error 2

[gfortran-7.4.0] make[4]: *** [all] Error 2

[gfortran-7.4.0]


[gfortran-7.4.0] Error building gfortran-7.4.0

[gfortran-7.4.0]





>
> Dima
>
>> G
>>
>> On Wednesday, October 9, 2019 at 1:00:37 PM UTC+2, David Joyner wrote:
>>>
>>>
>>>
>>> On Wed, Oct 9, 2019 at 6:45 AM George  wrote:
>>>
 Hi,

 I upgraded to the new macOS Catalina and SageMath won't install. I get
 errors like "python2.7 cannot be opened because the developer cannot be
 verified" and for numerous other components as well.

 Is anyone having the same problem? Any tips, advice or ideas on what is
 going on and how to fix this?


>>> I can confirm this issue. The problem is also discussed in the thread
>>>
>>> https://groups.google.com/forum/?utm_medium=email_source=footer#!msg/sage-support/4dUg8mbiDYw/u5o-U9QBCAAJ
>>> That's all I know.
>>>
>>>
 Thanks a lot,
 G

 --
 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-s...@googlegroups.com.
 To view this discussion on the web visit
 https://groups.google.com/d/msgid/sage-support/e69a4235-ec1b-465e-98da-635ed8be1b23%40googlegroups.com
 
 .

>>> --
>> 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.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/sage-support/1cd586e5-35af-4e39-9322-8e055c144601%40googlegroups.com
>> 
>> .
>>
> --
> 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.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/sage-support/CAAWYfq0ZBO74cNDnkb33ywH7KkGUNci%3DMxXm5Dsoq5ak-mWb9Q%40mail.gmail.com
> 
> .
>

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/sage-support/CAEQuuAWOOuPVgzgGdysYwz3oJ%3DxxV%3DNvj-ePKH__CYTe3x0p%2Bg%40mail.gmail.com.


Re: [sage-support] SageMath installation in macOS Catalina

2019-10-09 Thread Dima Pasechnik
On Wed, Oct 9, 2019 at 6:34 AM David Joyner  wrote:

>
>
> On Wed, Oct 9, 2019 at 7:14 AM Dima Pasechnik  wrote:
>
>> Hi,
>>
>> On Wed, Oct 9, 2019 at 6:03 AM George  wrote:
>>
>>> Hi David,
>>>
>>> Thanks for the update and information.
>>>
>>> building from source should still work.
>> Did you try this ?
>>
>
> I did. It chokes on the gfortran build:
>
> ...
>
> [gfortran-7.4.0] make[7]: *** [gets-chk.lo] Error 1
>
> [gfortran-7.4.0] make[6]: *** [all] Error 2
>
> [gfortran-7.4.0] make[5]: *** [all-target-libssp] Error 2
>
> [gfortran-7.4.0] make[4]: *** [all] Error 2
>
> [gfortran-7.4.0]
> 
>
> [gfortran-7.4.0] Error building gfortran-7.4.0
>
> [gfortran-7.4.0]
> 
>
>
>
>
is there Homebrew for  Catalina?
Then one can use its gfortran.



>> Dima
>>
>>> G
>>>
>>> On Wednesday, October 9, 2019 at 1:00:37 PM UTC+2, David Joyner wrote:



 On Wed, Oct 9, 2019 at 6:45 AM George  wrote:

> Hi,
>
> I upgraded to the new macOS Catalina and SageMath won't install. I get
> errors like "python2.7 cannot be opened because the developer cannot be
> verified" and for numerous other components as well.
>
> Is anyone having the same problem? Any tips, advice or ideas on what
> is going on and how to fix this?
>
>
 I can confirm this issue. The problem is also discussed in the thread

 https://groups.google.com/forum/?utm_medium=email_source=footer#!msg/sage-support/4dUg8mbiDYw/u5o-U9QBCAAJ
 That's all I know.


> Thanks a lot,
> G
>
> --
> 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-s...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/sage-support/e69a4235-ec1b-465e-98da-635ed8be1b23%40googlegroups.com
> 
> .
>
 --
>>> 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.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/sage-support/1cd586e5-35af-4e39-9322-8e055c144601%40googlegroups.com
>>> 
>>> .
>>>
>> --
>> 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.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/sage-support/CAAWYfq0ZBO74cNDnkb33ywH7KkGUNci%3DMxXm5Dsoq5ak-mWb9Q%40mail.gmail.com
>> 
>> .
>>
> --
> 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.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/sage-support/CAEQuuAWOOuPVgzgGdysYwz3oJ%3DxxV%3DNvj-ePKH__CYTe3x0p%2Bg%40mail.gmail.com
> 
> .
>

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/sage-support/CAAWYfq2d7ibBfTaz4dQNuWjTjFA0rL0U_r1ggmXTMJiz-%2B77YQ%40mail.gmail.com.


Re: [sage-support] SageMath installation in macOS Catalina

2019-10-09 Thread George
Hi,

I did not try building from source, but I guess by David's post that there 
are issues as well. 

G

On Wednesday, October 9, 2019 at 1:34:24 PM UTC+2, David Joyner wrote:
>
>
>
> On Wed, Oct 9, 2019 at 7:14 AM Dima Pasechnik  > wrote:
>
>> Hi,
>>
>> On Wed, Oct 9, 2019 at 6:03 AM George > 
>> wrote:
>>
>>> Hi David,
>>>
>>> Thanks for the update and information.
>>>
>>> building from source should still work.
>> Did you try this ?
>>
>
> I did. It chokes on the gfortran build:
>
> ...
>
> [gfortran-7.4.0] make[7]: *** [gets-chk.lo] Error 1
>
> [gfortran-7.4.0] make[6]: *** [all] Error 2
>
> [gfortran-7.4.0] make[5]: *** [all-target-libssp] Error 2
>
> [gfortran-7.4.0] make[4]: *** [all] Error 2
>
> [gfortran-7.4.0] 
> 
>
> [gfortran-7.4.0] Error building gfortran-7.4.0
>
> [gfortran-7.4.0] 
> 
>
>
>  
>
>>
>> Dima
>>
>>> G
>>>
>>> On Wednesday, October 9, 2019 at 1:00:37 PM UTC+2, David Joyner wrote:



 On Wed, Oct 9, 2019 at 6:45 AM George  wrote:

> Hi,
>
> I upgraded to the new macOS Catalina and SageMath won't install. I get 
> errors like "python2.7 cannot be opened because the developer cannot be 
> verified" and for numerous other components as well. 
>
> Is anyone having the same problem? Any tips, advice or ideas on what 
> is going on and how to fix this?
>
>
 I can confirm this issue. The problem is also discussed in the thread

 https://groups.google.com/forum/?utm_medium=email_source=footer#!msg/sage-support/4dUg8mbiDYw/u5o-U9QBCAAJ
 That's all I know.
  

> Thanks a lot,
> G
>
> -- 
> 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-s...@googlegroups.com.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/sage-support/e69a4235-ec1b-465e-98da-635ed8be1b23%40googlegroups.com
>  
> 
> .
>
 -- 
>>> 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-s...@googlegroups.com .
>>> To view this discussion on the web visit 
>>> https://groups.google.com/d/msgid/sage-support/1cd586e5-35af-4e39-9322-8e055c144601%40googlegroups.com
>>>  
>>> 
>>> .
>>>
>> -- 
>> 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-s...@googlegroups.com .
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/sage-support/CAAWYfq0ZBO74cNDnkb33ywH7KkGUNci%3DMxXm5Dsoq5ak-mWb9Q%40mail.gmail.com
>>  
>> 
>> .
>>
>

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/sage-support/1c3b985f-49da-4097-a3ed-0fe9d00d8fa7%40googlegroups.com.


Re: [sage-support] SageMath installation in macOS Catalina

2019-10-09 Thread Dima Pasechnik
Hi,

On Wed, Oct 9, 2019 at 6:03 AM George  wrote:

> Hi David,
>
> Thanks for the update and information.
>
> building from source should still work.
Did you try this ?

Dima

> G
>
> On Wednesday, October 9, 2019 at 1:00:37 PM UTC+2, David Joyner wrote:
>>
>>
>>
>> On Wed, Oct 9, 2019 at 6:45 AM George  wrote:
>>
>>> Hi,
>>>
>>> I upgraded to the new macOS Catalina and SageMath won't install. I get
>>> errors like "python2.7 cannot be opened because the developer cannot be
>>> verified" and for numerous other components as well.
>>>
>>> Is anyone having the same problem? Any tips, advice or ideas on what is
>>> going on and how to fix this?
>>>
>>>
>> I can confirm this issue. The problem is also discussed in the thread
>>
>> https://groups.google.com/forum/?utm_medium=email_source=footer#!msg/sage-support/4dUg8mbiDYw/u5o-U9QBCAAJ
>> That's all I know.
>>
>>
>>> Thanks a lot,
>>> G
>>>
>>> --
>>> 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-s...@googlegroups.com.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/sage-support/e69a4235-ec1b-465e-98da-635ed8be1b23%40googlegroups.com
>>> 
>>> .
>>>
>> --
> 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.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/sage-support/1cd586e5-35af-4e39-9322-8e055c144601%40googlegroups.com
> 
> .
>

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/sage-support/CAAWYfq0ZBO74cNDnkb33ywH7KkGUNci%3DMxXm5Dsoq5ak-mWb9Q%40mail.gmail.com.


Re: [sage-support] Re: solving a linear system of GF(3) -- strange TypeError

2019-10-09 Thread David Joyner
On Wed, Oct 9, 2019 at 1:33 AM Robert Samal  wrote:

> Sorry, F=GF(3), I made my original example shorter and didn't read it
> properly.
>
> So the full problematic code is
>
> B=matrix(GF(3), 2,2,[1,0,1,0], sparse=True)
> v=vector(GF(3), [1,1])
> B.solve_right(v)
>
>
Yes. I can confirm it works with "sparse=True" removed *or* if GF(3) is
replaced by ZZ.
So there's an easy workaround but maybe the docs or the code has a bug?
Thanks for reporting.

Thanks,
>
> Robert
>
>
> On Tuesday, October 8, 2019 at 5:17:59 PM UTC-7, Robert Samal wrote:
>>
>> I am trying to solve a rather large linear systems of equations of GF(3).
>> As the matrices are sparse, I thought that adding "sparse=True" to the
>> constructor of the matrix could be of help. However, I ran to a strange
>> error message.
>>
>> B=matrix(GF(3), 2,2,[1,0,1,0], sparse=True)
>> v=vector(F, [1,1])
>> B.solve_right(v)
>>
>> The above code yields the following
>>
>> TypeError: Cannot convert sage.matrix.matrix_modn_sparse.Matrix_modn_sparse 
>> to sage.matrix.matrix_integer_sparse.Matrix_integer_sparse
>>
>>
>> I am hesitant to paste the whole error message here, but it ends with 
>> reference to file
>> SageMath/local/lib/python2.7/site-packages/sage/matrix/matrix_modn_sparse.pyx
>>  in
>> sage.matrix.matrix_modn_sparse.Matrix_modn_sparse._solve_matrix_linbox
>> (build/cythonized/sage/matrix/matrix_modn_sparse.cpp:11633).
>>
>> I am using Sage 8.9, but the same issue was on 8.7 as well.
>>
>> Few other observations:
>> -- works as expected for dense matrices -- or for sparse ones over integers
>> -- the same issue occurs whether y is a vector or a matrix
>> -- It behaves the same for systems with no solution.
>>
>> Is there some hidden limitation of sparse matrices over finite fields?
>> I.e., is it a bug or feature? :-)
>> I tried to RTFM, but couldn't find this discussed. The page for sparse 
>> matrices over
>> finite fields does not exactly promise the solve method, but it does not 
>> mention it
>> would not work either. Is it possible to achieve what I want by other means 
>> (in Sage).
>>
>> Thanks.
>>
>>
>>
>>
>> --
> 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.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/sage-support/6ac68e19-7c5a-4be1-ba10-1bac22cddc62%40googlegroups.com
> 
> .
>

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/sage-support/CAEQuuAWQYKhtkVme8wHkJTj38QkmfnSJf3_Lhtqj9PxJmq8HcQ%40mail.gmail.com.


Re: [sage-support] SageMath installation in macOS Catalina

2019-10-09 Thread George
Hi David,

Thanks for the update and information.

G

On Wednesday, October 9, 2019 at 1:00:37 PM UTC+2, David Joyner wrote:
>
>
>
> On Wed, Oct 9, 2019 at 6:45 AM George > 
> wrote:
>
>> Hi,
>>
>> I upgraded to the new macOS Catalina and SageMath won't install. I get 
>> errors like "python2.7 cannot be opened because the developer cannot be 
>> verified" and for numerous other components as well. 
>>
>> Is anyone having the same problem? Any tips, advice or ideas on what is 
>> going on and how to fix this?
>>
>>
> I can confirm this issue. The problem is also discussed in the thread
>
> https://groups.google.com/forum/?utm_medium=email_source=footer#!msg/sage-support/4dUg8mbiDYw/u5o-U9QBCAAJ
> That's all I know.
>  
>
>> Thanks a lot,
>> G
>>
>> -- 
>> 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-s...@googlegroups.com .
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/sage-support/e69a4235-ec1b-465e-98da-635ed8be1b23%40googlegroups.com
>>  
>> 
>> .
>>
>

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/sage-support/1cd586e5-35af-4e39-9322-8e055c144601%40googlegroups.com.


Re: [sage-support] SageMath installation in macOS Catalina

2019-10-09 Thread David Joyner
On Wed, Oct 9, 2019 at 6:45 AM George  wrote:

> Hi,
>
> I upgraded to the new macOS Catalina and SageMath won't install. I get
> errors like "python2.7 cannot be opened because the developer cannot be
> verified" and for numerous other components as well.
>
> Is anyone having the same problem? Any tips, advice or ideas on what is
> going on and how to fix this?
>
>
I can confirm this issue. The problem is also discussed in the thread
https://groups.google.com/forum/?utm_medium=email_source=footer#!msg/sage-support/4dUg8mbiDYw/u5o-U9QBCAAJ
That's all I know.


> Thanks a lot,
> G
>
> --
> 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.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/sage-support/e69a4235-ec1b-465e-98da-635ed8be1b23%40googlegroups.com
> 
> .
>

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/sage-support/CAEQuuAVfhT-JOV7H7TxH7uWuzY2VxGJ6qaEU00PYQeRu%3DOkesA%40mail.gmail.com.


[sage-support] SageMath installation in macOS Catalina

2019-10-09 Thread George
Hi,

I upgraded to the new macOS Catalina and SageMath won't install. I get 
errors like "python2.7 cannot be opened because the developer cannot be 
verified" and for numerous other components as well. 

Is anyone having the same problem? Any tips, advice or ideas on what is 
going on and how to fix this?

Thanks a lot,
G

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/sage-support/e69a4235-ec1b-465e-98da-635ed8be1b23%40googlegroups.com.