Re: Installing python3 packages using pip

2019-08-08 Thread Rich Shepard
On Fri, 9 Aug 2019, Chris Angelico wrote: There's one other potential trap you MAY fall into, but only if you have multiple Python 3s installed (eg 3.7, 3.8, and 3.9). ChrisA, Not likely. I'm the only one using these hosts and I keep only a single, current, version of software. So to be abs

Re: Installing python3 packages using pip

2019-08-08 Thread Chris Angelico
On Fri, Aug 9, 2019 at 5:01 AM Rich Shepard wrote: > > On Fri, 9 Aug 2019, Chris Angelico wrote: > > > Once you're using pip3, you don't need to specify the 3 anywhere else. It > > should just be "pip3 install numpy". The pip download resolver will make > > sure that it gets a version that's appro

Re: Installing python3 packages using pip

2019-08-08 Thread Rich Shepard
On Thu, 8 Aug 2019, MRAB wrote: What's numpy3? Is it different from numpy? I run Slackware and the SlackBuilds.org packages distinguish buiding between python2 and python3. I've used those build scripts for years but they've failed me on this new desktop and one laptop so I used pip3 instead.

Re: Installing python3 packages using pip

2019-08-08 Thread Rich Shepard
On Fri, 9 Aug 2019, Chris Angelico wrote: Once you're using pip3, you don't need to specify the 3 anywhere else. It should just be "pip3 install numpy". The pip download resolver will make sure that it gets a version that's appropriate to your Python (including architecture/word size, version (x

Re: Installing python3 packages using pip

2019-08-08 Thread MRAB
On 2019-08-08 19:01, Rich Shepard wrote: On Thu, 8 Aug 2019, Richard Moseley wrote: You will need to have to install python3-pip (or equivalent on your repository) to install the version of pip suitable for use with python 3.x. The program is usually installed as 'pip3' so substitute 'pip' for

Re: Installing python3 packages using pip

2019-08-08 Thread Chris Angelico
On Fri, Aug 9, 2019 at 4:02 AM Rich Shepard wrote: > > On Thu, 8 Aug 2019, Richard Moseley wrote: > > > You will need to have to install python3-pip (or equivalent on your > > repository) to install the version of pip suitable for use with python 3.x. > > The program is usually installed as 'pip3'

Re: Installing python3 packages using pip

2019-08-08 Thread Rich Shepard
On Thu, 8 Aug 2019, Richard Moseley wrote: You will need to have to install python3-pip (or equivalent on your repository) to install the version of pip suitable for use with python 3.x. The program is usually installed as 'pip3' so substitute 'pip' for 'pip3' to install or upgrade Pypy packages

Re: Installing python3 packages using pip

2019-08-08 Thread Rich Shepard
On Thu, 8 Aug 2019, Richard Moseley wrote: You will need to have to install python3-pip Richard, Aha! I thought it was just pip3. Hope this helps, Richard Moseley. Yes, it does. Many thanks, Rich -- https://mail.python.org/mailman/listinfo/python-list

Re: Installing python3 packages using pip

2019-08-08 Thread Richard Moseley
You will need to have to install python3-pip (or equivalent on your repository) to install the version of pip suitable for use with python 3.x. The program is usually installed as 'pip3' so substitute 'pip' for 'pip3' to install or upgrade Pypy packages. Of course, if possible always create a new '

Installing python3 packages using pip

2019-08-08 Thread Rich Shepard
The host has Python3-3.7.4 installed. Trying to use "pip install numpy3" fails: # pip install numpy3 DEPRECATION: Python 2.7 will reach the end of its life on January 1st, 2020. Please upgrade your Python as Python 2.7 won't be maintained after that date. A future version of pip will drop suppo