简体   繁体   中英

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

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 .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM