Re: [sage-release] Re: Sage 9.8.rc0 released

2023-02-05 Thread Dima Pasechnik
You also were saying that you have MAXIMA set to an installation of Maxima. Note that Sage won't be able to use it. Sage uses Maxima in two ways: as a Python module embedding ECL (with Maxima installed there) and (something we work on to get rid of) interacting with Maxima built with ECL with

Re: [sage-release] Re: Sage 9.8.rc0 released

2023-02-05 Thread Dima Pasechnik
On Sun, Feb 5, 2023 at 12:44 PM 'Nasser M. Abbasi' via sage-release wrote: > > > I agree with you. I think the best thing for me, is just to make a brand new > Virtual box, and install a new Linux and start everything from clean system. > It will take me 2-3 days as I have to install few things

Re: [sage-release] Re: Sage 9.8.rc0 released

2023-02-05 Thread 'Nasser M. Abbasi' via sage-release
I agree with you. I think the best thing for me, is just to make a brand new Virtual box, and install a new Linux and start everything from clean system. It will take me 2-3 days as I have to install few things I need, Then will try installing sagemath again after that. Thanks for the help.

Re: [sage-release] Re: Sage 9.8.rc0 released

2023-02-05 Thread Dima Pasechnik
I suspect you have an installation of openblas, or/and some other blas/lapack, in /usr/local - and this results in scipy being unable to link it correctly. (or perhaps it's not /usr/local, but some other location known to pkg-config) numpy and scipy accumulated ~20 years of layer upon layer of

Re: [sage-release] Re: Sage 9.8.rc0 released

2023-02-05 Thread 'Nasser M. Abbasi' via sage-release
Here is the output for the new command you posted >ldd local/var/lib/sage/venv-python3.10/lib/python3.10/site-packages/numpy/core/_multiarray_umath.cpython-310-x86_64-linux-gnu.so linux-vdso.so.1 (0x7ffd883d4000) libcblas.so.3 => /usr/lib/libcblas.so.3 (0x7f25a6532000)

Re: [sage-release] Re: Sage 9.8.rc0 released

2023-02-05 Thread Dima Pasechnik
On Sun, Feb 5, 2023 at 9:58 AM Dima Pasechnik wrote: > > On Sun, Feb 5, 2023 at 9:04 AM 'Nasser M. Abbasi' via sage-release > wrote: > > > > > > Here is the output > > > > >ldd > >

Re: [sage-release] Re: Sage 9.8.rc0 released

2023-02-05 Thread Dima Pasechnik
On Sun, Feb 5, 2023 at 9:04 AM 'Nasser M. Abbasi' via sage-release wrote: > > > Here is the output > > >ldd > >/home/me/TMP/sage-9.8.rc0/local/var/lib/sage/venv-python3.10/lib/python3.10/site-packages/scipy/special/_ufuncs.cpython-310-x86_64-linux-gnu.so > linux-vdso.so.1

Re: [sage-release] Re: Sage 9.8.rc0 released

2023-02-05 Thread 'Nasser M. Abbasi' via sage-release
Here is the output >ldd /home/me/TMP/sage-9.8.rc0/local/var/lib/sage/venv-python3.10/lib/python3.10/site-packages/scipy/special/_ufuncs.cpython-310-x86_64-linux-gnu.so linux-vdso.so.1 (0x7ffc53be9000) libgfortran.so.5 => /usr/lib/libgfortran.so.5 (0x7fc232878000) libm.so.6

Re: [sage-release] Re: Sage 9.8.rc0 released

2023-02-04 Thread Dima Pasechnik
one source of trouble might be your LD_LIBRARY_PATH=/usr/local/lib:/mnt/g/public_html/scripts: setting. Build systems are usually ignoring it, linking with "correct" libraries, but at runtime (e.g., while importing a Python module using libraries) this might result in picking a wrong

Re: [sage-release] Re: Sage 9.8.rc0 released

2023-02-04 Thread Dima Pasechnik
On Sat, Feb 4, 2023 at 1:51 PM 'Nasser M. Abbasi' via sage-release wrote: > > "Was it an incremental build. If so, >make distclean > and > build again from scratch." > > It was not an incremental build. I extracted the gzip file and did the steps > I showed. So I do not need to do "make

Re: [sage-release] Re: Sage 9.8.rc0 released

2023-02-04 Thread Dima Pasechnik
On Sat, 4 Feb 2023, 13:51 'Nasser M. Abbasi' via sage-release, < sage-release@googlegroups.com> wrote: > "Was it an incremental build. If so, >make distclean > and > build again from scratch." > > It was not an incremental build. I extracted the gzip file and did the > steps I showed. So I

Re: [sage-release] Re: Sage 9.8.rc0 released

2023-02-04 Thread 'Nasser M. Abbasi' via sage-release
"Was it an incremental build. If so, make distclean and build again from scratch." It was not an incremental build. I extracted the gzip file and did the steps I showed. So I do not need to do "make distclean" since everything is new. But I repeated now everything again using "make

Re: [sage-release] Re: Sage 9.8.rc0 released

2023-02-04 Thread Dima Pasechnik
Hello, Was it an incremental build. If so, make distclean and build again from scratch. Anyhow, if you look in your istall.log you'll see problems with a number of packages, e.g. fpylll, scipy. [sagemath_doc_html-none] [manifolds] ImportError:

Re: [sage-release] Re: Sage 9.8.rc0 released

2023-02-04 Thread François Bissey
There are at least two different issues that breaks the build of the doc for you: [sagemath_doc_html-none] pkg_resources.DistributionNotFound: The 'fpylll<=0.5.9,>=0.5.9' distribution was not found and is required by sagemath-standard [sagemath_doc_html-none] Warning: Could not import

Re: [sage-release] Re: Sage 9.8.rc0 released

2023-02-04 Thread 'Nasser M. Abbasi' via sage-release
I get this error on Linux virtual box running lsb_release -a LSB Version:n/a Distributor ID:ManjaroLinux Description:Manjaro Linux Release:22.0.0 Codename:Sikaris After extracting the gzip file, these are the commands I did unset SAGE_ROOT unset SAGE_LOCAL export

Re: [sage-release] Re: Sage 9.8.rc0 released

2023-02-03 Thread Dima Pasechnik
On Fri, Feb 3, 2023 at 7:33 AM Sébastien Labbé wrote: > > > > On Thursday, February 2, 2023 at 7:37:27 PM UTC+1 matthia...@gmail.com wrote: > On Thursday, February 2, 2023 at 9:30:30 AM UTC-8 Sébastien Labbé wrote: > ./bootstrap: 9: m4: Permission denied > make: *** [Makefile:365 : configure]

Re: [sage-release] Re: Sage 9.8.rc0 released

2023-02-02 Thread Dima Pasechnik
On Thu, 2 Feb 2023, 17:30 Sébastien Labbé, wrote: > On another machine running Ubuntu 22.04, installing sage from source from > scratch, I get "m4: Permission denied" error during the "make configure". > Should I "sudo make configure" ? > no. Something it either off with permissions in