Re: Debian testing and virtual environment error message

2020-12-26 Thread songbird
songbird wrote: ... > The package mentioned is installed: > > >= > > $ dpkg -l | grep python3-venv > ii python3-venv 3.9.0-4amd64 >pyvenv-3 binary for python3 (default python3 version) > here is something i missed including in my fi

Re: Debian testing and virtual environment error message

2020-12-26 Thread songbird
Chris Angelico wrote: ... > $ which python /usr/bin/python for both user and root looking at /usr/bin it looks like: lrwxrwxrwx 1 root root 7 Nov 3 03:20 python -> python3 lrwxrwxrwx 1 root root 9 Dec 6 05:36 python3 -> python3.9 -rwxr-xr-x 1 root root 5479

Re: Debian testing and virtual environment error message

2020-12-26 Thread Chris Angelico
On Sun, Dec 27, 2020 at 11:31 AM songbird wrote: > > > Simlar to Rich's asking about how to deal with python3.9 > I'm not able to to get my virtual environment set up to work > now and I'm not sure how to go about fixing this. > > As it is testing I may have broken it somehow but I do not > kn

Debian testing and virtual environment error message

2020-12-26 Thread songbird
Simlar to Rich's asking about how to deal with python3.9 I'm not able to to get my virtual environment set up to work now and I'm not sure how to go about fixing this. As it is testing I may have broken it somehow but I do not know how to fix this. I asked on the Debian user mailing list

Re: Installing python3 modules

2020-12-26 Thread Rich Shepard
On Sat, 26 Dec 2020, Terry Reedy wrote: Separate 'pip' executables can be ambiguous as to which python they will invoke. Some people consider them a mistake. Terry, Until there's no more python2 it can remain confusing. I found part, if not all, of my problem. The SlackBuild scripts for mult

Re: Installing python3 modules

2020-12-26 Thread Rich Shepard
On Sat, 26 Dec 2020, Barry Scott wrote: It works great with 3.9. which web psge did you see the claim on? Barry, I don't recall which pip3 installation page it was. But I used 'python3 get-pip.py' and that worked. Stay well, Rich -- https://mail.python.org/mailman/listinfo/python-list

Re: Installing python3 modules

2020-12-26 Thread Terry Reedy
On 12/26/2020 12:13 PM, Rich Shepard wrote: Running Slackware-14.2/x86_64 here. I'm trying to learn if any installed applications are still dependent on Python2 (version 2.7.17 installed) as its EOL is this coming Thursday and I want to clean out all Python2 modules and replace them with their Py

Pyrebase auth

2020-12-26 Thread Sadaka Technology
I am using signup method: user_signup = auth.create_user_with_email_and_password(email, password) and my firebase rules are: { "rules": { ".read": false, ".write": false, "$localId": { ".write": "auth.uid === $localId", ".read": "auth.uid === $localId" }

Re: Installing python3 modules

2020-12-26 Thread Rich Shepard
On Sat, 26 Dec 2020, Mats Wichmann wrote: pip supports 3.9 fine, and is just about to lose support for 2.x entirely. Mats, Yes, it does. this sounds like a Slack packaging issue, have you checked with appropriate forums_ It's apparently a local issue: my python3 packages ended up in /usr/

Re: Installing python3 modules

2020-12-26 Thread Mats Wichmann
On 12/26/20 10:13 AM, Rich Shepard wrote: Running Slackware-14.2/x86_64 here. I'm trying to learn if any installed applications are still dependent on Python2 (version 2.7.17 installed) as its EOL is this coming Thursday and I want to clean out all Python2 modules and replace them with their Pyth

Re: Installing python3 modules

2020-12-26 Thread Barry Scott
> On 26 Dec 2020, at 17:13, Rich Shepard wrote: > > Running Slackware-14.2/x86_64 here. I'm trying to learn if any installed > applications are still dependent on Python2 (version 2.7.17 installed) as > its EOL is this coming Thursday and I want to clean out all Python2 modules > and replace t

Installing python3 modules

2020-12-26 Thread Rich Shepard
Running Slackware-14.2/x86_64 here. I'm trying to learn if any installed applications are still dependent on Python2 (version 2.7.17 installed) as its EOL is this coming Thursday and I want to clean out all Python2 modules and replace them with their Python3 versions (3.9 installed here). This rai