0% found this document useful (0 votes)
2 views

PIP

pip is a package management system for Python that allows users to install and manage software packages, included by default in Python 2.7.9+ and 3.4+. It offers features such as extensive logging, support for version control repositories, and prevents partial installs. Common commands include 'pip install', 'pip uninstall', 'pip search', and 'pip show' for managing packages.

Uploaded by

Suresh
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2 views

PIP

pip is a package management system for Python that allows users to install and manage software packages, included by default in Python 2.7.9+ and 3.4+. It offers features such as extensive logging, support for version control repositories, and prevents partial installs. Common commands include 'pip install', 'pip uninstall', 'pip search', and 'pip show' for managing packages.

Uploaded by

Suresh
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

pip is a package management system used to install and manage software packages

written in Python.

>>Python 2.7.9 and later (on the python2 series), and Python 3.4 and later include
pip (pip3 for Python 3) by default.

Note:pip is an alternative Python package installer. It performs the same basic job
as easy_install, but with some extra features.
It can work with version control repositories (currently only Git, Mercurial, and
Bazaar repositories), logs output extensively,
and prevents partial installs by downloading all requirements before starting
installation.

Command to Install a Package: pip install some-package-name

To remove a Package:pip uninstall some-package-name

To install Pip on your system, you can use either the source tarball or
by using easy_install.
>>easy_install pip

Installing a package
>>pip install sqlalchemy

Note :After installation and in case when your network is behide a http proxy you
need to use ‘–proxy’ option
while calling pip from comand-line:
pip install --proxy="user:password@server:port" packagename

Removing a package
>>pip uninstall sqlalchemy

Searching a package
>>pip search "query"

To Show Information about a package:


>>pip show packagename

To List all the packages:


>> pip list

------------------------------------------------------
For Easy install :export http_proxy=http://proxy_url:proxy_port

You might also like