is sysconfig.get_path('purelib') local ?

2022-08-27 Thread Jerome BENOIT
Hello, in the current Sid (Python 3.10.6), $ python3 -c "import sysconfig; print (sysconfig.get_path('purelib'));" gives /usr/local/lib/python3.10/dist-packages I suspect that it formaly gave (< Python 3.10.6) /usr/lib/python3.10/dist-packages What is actually the expected answer ? Chee

Re: is sysconfig.get_path('purelib') local ?

2022-08-27 Thread Stefano Rivera
Hi Jerome (2022.08.27_18:01:45_+) > in the current Sid (Python 3.10.6), > > $ python3 -c "import sysconfig; print (sysconfig.get_path('purelib'));" > > gives > > /usr/local/lib/python3.10/dist-packages > > I suspect that it formaly gave (< Python 3.10.6) > > /usr/lib/python3.10/dist-packag

Re: is sysconfig.get_path('purelib') local ?

2022-08-27 Thread Jerome BENOIT
Hi Stefano, thanks for the reply. On 27/08/2022 22:13, Stefano Rivera wrote: Hi Jerome (2022.08.27_18:01:45_+) in the current Sid (Python 3.10.6), $ python3 -c "import sysconfig; print (sysconfig.get_path('purelib'));" gives /usr/local/lib/python3.10/dist-packages I suspect that it for