user7847768
user7847768

Reputation:

Python 3.6.4 - Is PIP Bundled?

I downloaded Python 3.6.4 through a Linux package manager and the PIP command is not recognized. Is PIP bundled with Python 3.6.4?

I am having problems running the get-pip.py script as I am running out of memory. So I am looking to get PIP through other ways.

Thanks,

Steve

Upvotes: 0

Views: 196

Answers (1)

gilch
gilch

Reputation: 11691

The standard distribution of Python includes pip, but Linux packages are not the same as the standard distribution. Many Linux python packages do not include pip (or other things in the standard distribution, like IDLE or turtle). This can be useful for Linux systems that only need Python to run scripts, rather than for development.

Try installing pip separately with your package manager. It's usually available when Python is, but may be a separate package.

You can also try downloading the standard source distribution from python.org (you'd have to compile it), or depending on your needs, you could use an installer from a more complete distribution like Anaconda.

Upvotes: 2

Related Questions