Re: [sage-devel] Error installing scipy when building Sage 10.1 from source under WSL2:

2023-10-27 Thread Jeremy Martin
Thanks, Dima!  Increasing WSL's memory allocation to 6GB from 4GB fixed the problem and the rest of the compilation went off without a hitch. -Jeremy On 10/20/23 2:36 PM, Dima Pasechnik wrote: On Thu, Oct 19, 2023 at 9:40 PM Jeremy Martin wrote: I am trying to build Sage 10.1 from s

Re: [sage-devel] Failure to build Sage 9.4 on Monterey

2022-02-01 Thread Jeremy Martin
Samuel, Thanks - that worked. I appreciate the help. -Jeremy On Monday, January 31, 2022 at 5:03:26 PM UTC-6 Jeremy Martin wrote: > Thank you for the suggestions. I will keep trying to install from source > and may post again with more questions. > -Jeremy > > On Saturday, J

Re: [sage-devel] Failure to build Sage 9.4 on Monterey

2022-01-31 Thread Jeremy Martin
osetta. > > - Marc > > On Friday, January 28, 2022 at 3:12:29 PM UTC-6 dim...@gmail.com wrote: > >> 9.4 is not known to run on M1. >> Try the latest, 9.5.rc4, instead. >> >> On Fri, 28 Jan 2022, 19:03 Jeremy Martin, wrote: >> >>> I am on a

Re: [sage-devel] Failure to build Sage 9.4 on Monterey

2022-01-28 Thread Jeremy Martin
On Fri, 28 Jan 2022, 22:31 Jeremy Martin, wrote: Apologies if I'm missing something, but 9.4 appears to be the current version available on sagemath.org <http://sagemath.org> and all its mirrors. https://www.sagemath.org/download-latest.html -JLM On Friday, Januar

Re: [sage-devel] Failure to build Sage 9.4 on Monterey

2022-01-28 Thread Jeremy Martin
Fri, 28 Jan 2022, 19:03 Jeremy Martin, wrote: > >> I am on a brand-new Apple M1 running Monterey 12.0.1. I just tried to >> build Sage 9.4 from source. After installing XCode, command-line tools, >> Homebrew, I get the following (complete log files attached). >> >&

Re: [sage-devel] Failure to build 9.0 -- matplotlib error

2020-01-23 Thread Jeremy Martin
OK, everything worked fine this time.  Dima, thanks very much for your help! -Jeremy On 1/22/20 11:12 AM, Dima Pasechnik wrote: On Wed, Jan 22, 2020 at 4:59 PM Jeremy Martin wrote: Same problem after running .configure and make. Again, it breaks while trying to build brial. New log

Re: [sage-devel] Failure to build 9.0 -- matplotlib error

2020-01-22 Thread Jeremy Martin
Same problem after running .configure and make.  Again, it breaks while trying to build brial.  New log attached. Thanks again, Jeremy On 1/22/20 9:45 AM, Jeremy Martin wrote: Just ran ./configure and am about to try make again.  config.log is attached. -JLM On Wednesday, January 22, 2020

Re: [sage-devel] Failure to build 9.0 -- matplotlib error

2020-01-22 Thread Jeremy Martin
pkg-config is located in /usr/local/bin, which is in both PKG_CONFIG and PATH. The logfile is attached. Thanks again for your help. -Jeremy On Tuesday, January 21, 2020 at 4:32:48 PM UTC-6, Jeremy Martin wrote: > > Thanks, I did not notice that. I will try it and report back. > > -Je

Re: [sage-devel] Failure to build 9.0 -- matplotlib error

2020-01-21 Thread Jeremy Martin
; Do you have it installed? > > Do you have Sage's libpng built? > > > > > On Tue, Jan 21, 2020 at 8:01 PM Jeremy Martin > wrote: > > > > I'm trying to build Sage 9.0 from source under MacOS Mojave 10.14.6. I > ran into an error w

[sage-devel] Failure to build 9.0 -- matplotlib error

2020-01-21 Thread Jeremy Martin
'make all-start'): * package: matplotlib-2.2.4.p0 log file: /Applications/sage-9.0/logs/pkgs/matplotlib-2.2.4.p0.log build directory: /Applications/sage-9.0/local/var/tmp/sage/build/matplotlib-2.2.4.p0 Any advice you can give will be helpful. Thanks! --Jeremy Martin -- You r

[sage-devel] Re: OS X build failure: "Error installing package gfortran-7.2.0"

2019-03-02 Thread Jeremy Martin
I just had to reinstall Sage (now running Mojave). I got the same error as I had reported earlier, even though the command line tools were installed. I followed Michael's suggestions and the build proceeded fine. Thank you! -Jeremy On Wednesday, October 10, 2018 at 9:47:45 PM UTC-5, Michael F

Re: [sage-devel] OS X build failure: "Error installing package gfortran-7.2.0"

2018-08-16 Thread Jeremy Martin
gt; On 16/08/2018, at 07:51, Jeremy Martin > wrote: > > > > I am trying to install sage 8.3 from source, running MacOS 10.13.6 High > Sierra. A snippet of the output is below. I'm attaching the full logfile. > I don't know what this means, so any help would be

[sage-devel] Bug in BipartiteGraph.vertex_cover()

2016-04-30 Thread Jeremy Martin
The vertex_cover method fails to work correctly in the following example. Note that the two graphs in question are isomorphic. I have obtained this behavior in Sage 6.0 running under OSX10.11, as well as on aleph.sagemath.org and cloud.sagemath.org. ===

[sage-devel] Expanding vectors

2015-08-30 Thread Jeremy Martin
It would be helpful if the components of a vector could be expanded and simplified. Right now this happens: sage: p,q,r = var('p,q,r') sage: v = vector([(p+q)*r, (p-q)*r]) sage: w = vector([p*r+q*r, p*r-q*r]) sage: v ((p + q)*r, (p - q)*r) sage: expand(v) ((p + q)*r, (p - q)*r) sage: v-w ((p + q

[sage-devel] Re: Log behavior

2015-07-25 Thread Jeremy Martin
On 7/25/15 11:18 AM, Nils Bruin wrote: On Saturday, July 25, 2015 at 8:17:19 AM UTC-7, Ralf Stephan wrote: Well, you got the log(x,y) from the documentation. So we should put info on valuation there too. Thanks for the hints. Please don't. They are quite unrelated. They just happen to

[sage-devel] Re: Log behavior

2015-07-25 Thread Jeremy Martin
Sorry, let me give some more context. The question really is about two different types of integers. I was working with lists whose lengths were all 2^k for some k, and I wanted to extract k. This happened: sage: L=list(range(8)) sage: len(L) 8 sage: log(8,2) 3 sage: log(len(L),2) log(8)

[sage-devel] Log behavior

2015-07-24 Thread Jeremy Martin
The following looks weird: sage: log(int(8),2) log(8)/log(2) sage: log(8,2)3 -- You received this message because you are subscribed to the Google Groups "sage-devel" group. To unsubscribe from this group and stop receiving emails from it, send an email to sage-devel+unsubscr...@googlegroups.c

Re: [sage-devel] Error upgrading Sage

2015-07-01 Thread Jeremy Martin
> > On Wednesday, 1 July 2015 21:56:26 UTC+1, Dima Pasechnik wrote: >> >> >> >> On Wednesday, 1 July 2015 20:34:08 UTC+1, Jeremy Martin wrote: >>> >>> Yes, according to >>> http://doc.sagemath.org/html/en/installation/index.html. >>>

Re: [sage-devel] Error upgrading Sage

2015-07-01 Thread Jeremy Martin
eyer wrote: >> >> On 2015-07-01 20:21, Jeremy Martin wrote: >> > Hi Jeroen, >> > >> > Here it is: >> It looks right. >> >> Can you please run "make" again and see if this fixes the problem? >> > -- You received this

Re: [sage-devel] Error upgrading Sage

2015-07-01 Thread Jeremy Martin
le SAGE_KEEP_BUILT_SPKGS to 'yes' to prevent this. make: *** [build] Error 1 On Wednesday, July 1, 2015 at 2:12:18 PM UTC-5, Jeroen Demeyer wrote: > > On 2015-07-01 20:21, Jeremy Martin wrote: > > Hi Jeroen, > > > > Here it is: > It looks right. > &

Re: [sage-devel] Error upgrading Sage

2015-07-01 Thread Jeremy Martin
roen Demeyer wrote: > > On 2015-07-01 14:49, Jeremy Martin wrote: > > Hi! I am trying to update my Sage installation and ran into an error I > > do not understand. I am running OS 10.9 Mavericks with 8 GB of RAM and > > tons of disk space. Per instructions, here is the

[sage-devel] Error upgrading Sage

2015-07-01 Thread Jeremy Martin
tried any additional steps. Thanks in advance for the help. -Jeremy Martin cut here libtool: compile: gcc -std=gnu99 -DHAVE_CONFIG_H -I. -I/Applications/sage/local/includ