Re: [sage-support] nonlinear equation system

2022-03-01 Thread Scott Wilson
Thanks all. I believe Dima is correct. These are inconsistent. On Monday, February 28, 2022 at 1:59:58 AM UTC-8 dim...@gmail.com wrote: > On Mon, Feb 28, 2022 at 7:24 AM cyrille@univ-orleans.fr > wrote: > > > > I am not a mathematician but what seems obvious is that you have 8 > equations w

[sage-support] How to create a new virtual environment based on an existing sage installation

2022-03-01 Thread Maarten Derickx
Hi All, I am wondering what the best way is to create a new virtual environment where I can import stuff from an already existing sage installation: I tried the following using sage 9.5.beta9 $ sage -python3 -m venv --system-site-packages venv $ source venv/bin/activate (venv) $ python3 Python

[sage-support] Re: How to create a new virtual environment based on an existing sage installation

2022-03-01 Thread Matthias Koeppe
The particular error that you are running into comes from Singular not being in PATH. Use "sage -sh" to enter a shell in which SAGE_LOCAL/bin has been added to PATH. Then you can activate the venv as you did before. On Tuesday, March 1, 2022 at 10:45:00 AM UTC-8 m.derick...@gmail.com wrote: