Best practise for managing Conda environments?

2026-09-21 Thread Martin Schöön via Python-list
I am a occasional Python user and hence only post here rather seldom. Full time lurker though :-) I am a full time Linux user and moved from pip to conda for managing my Python life a few years ago. I am not an advanced conda user by any measure. For the most part moving to conda was a good idea.

Re: Best practise for managing Conda environments?

2026-09-21 Thread Johann 'Myrkraverk' Oskarsson
On 9/21/2026 5:17 PM, Martin Schöön wrote: I am a occasional Python user and hence only post here rather seldom. Full time lurker though :-) I am a full time Linux user and moved from pip to conda for managing my Python life a few years ago. I am not an advanced conda user by any measure. For

jacobi_symbol.py (was: Re: myrkraverk.c)

2026-09-21 Thread Johann 'Myrkraverk' Oskarsson
from myrkraverk import count_lsb ## Or the traditional method, # def count_lsb( n ):## it doesn't matter which one you use. # return ( n & -n ).bit_length() - 1 ## September 21, 2026. Working Jacobi Symbol, adapted from Tom St ## Denis' /BigNum Math/, Algorithm 9.6, page 268,

Re: Best practise for managing Conda environments?

2026-09-21 Thread Chris Angelico via Python-list
On Tue, 22 Sept 2026 at 02:42, Martin Schöön via Python-list wrote: > No, I have not tried asking any LLM. I hope for some real human advice. > Best place for human advice about Python these days is https://discuss.python.org/ as that's where most people have moved. This mailing list is mostly

Re: Best practise for managing Conda environments?

2026-09-21 Thread Jon Ribbens via Python-list
On 2026-09-21, Martin Schöön wrote: > Den 2026-09-21 skrev Johann 'Myrkraverk' Oskarsson > : >> On 9/21/2026 5:17 PM, Martin Schöön wrote: > >>> >>> Yesterday, however, I encountered a problem that a quick internet >>> search told me is somewhat common: adding a package to an environment >>>

Re: Best practise for managing Conda environments?

2026-09-21 Thread Martin Schöön via Python-list
Den 2026-09-21 skrev Johann 'Myrkraverk' Oskarsson : > On 9/21/2026 5:17 PM, Martin Schöön wrote: >> >> Yesterday, however, I encountered a problem that a quick internet >> search told me is somewhat common: adding a package to an environment >> stalls at the 'solving environment' stage. I found