Welcome, guest | Sign In | My Account | Store | Cart

Notice! PyPM is being replaced with the ActiveState Platform, which enhances PyPM’s build and deploy capabilities. Create your free Platform account to download ActivePython or customize Python with the packages you require and get automatic updates.

Download
ActivePython
INSTALL>
pypm install gp.recipe.pip

How to install gp.recipe.pip

  1. Download and install ActivePython
  2. Open Command Prompt
  3. Type pypm install gp.recipe.pip
 Python 2.7Python 3.2Python 3.3
Windows (32-bit)
0.5.2
0.5.3Never BuiltWhy not?
0.5.2 Available View build log
Windows (64-bit)
0.5.2
0.5.3Never BuiltWhy not?
0.5.2 Available View build log
Mac OS X (10.5+)
0.5.2
0.5.3Never BuiltWhy not?
0.5.2 Available View build log
Linux (32-bit)
0.5.3 Available View build log
0.5.2 Available View build log
Linux (64-bit)
0.5.3 Available View build log
0.5.2 Available View build log
 
License
MIT
Lastest release
version 0.5.3 on Nov 29th, 2012

This package is a zc.buildout recipe which allow to install python packages using pip

Detailed Documentation

Supported options

The recipe supports the following options:

virtualenv

Virtualenv directory. The virtualenv is build in this directory (Default to parts/pip). You can also use an existing one. If a virtualenv option is found in the buildout section then this one is used except if the current section override it.
env
extra environement vars used with subprocess
indexes
Extra indexes url.
install
A list of string passed to pip directly. A sub process is run per line. This allow to use --install-option.
editables
A list of svn url. (svn+http://myrepo/svn/MyApp#egg=MyApp)
eggs
A list of distribution to install with buildout

This recipe is based on zc.recipe.egg#scripts so options used by this recipe should also works.

Example usage

We'll start by creating a buildout that uses the recipe:

>>> write('buildout.cfg',
... """
... [buildout]
... parts = test1
...
... [test1]
... recipe = gp.recipe.pip
... install =
...     PasteScript
... interpreter = python
... scripts =
...     paster = paster
... """)

Running the buildout gives us:

>>> print 'start', system(buildout)
start...
Installing test1.
...
Generated script '/sample-buildout/bin/paster'.
Generated interpreter '/sample-buildout/bin/python'...

Scripts are generated:

>>> ls('bin')
-  buildout
-  paster
-  python

With the virtualenv binary as executable:

>>> print 'cat', cat('bin', 'paster')
cat .../parts/pip/bin/python
...
Complete Example

Here is a config file used to install Deliverance:

[buildout]
parts = eggs
download-cache = download
versions = versions

[versions]
# the recipe take care of versions
lxml=2.2alpha1

[eggs]
recipe = gp.recipe.pip
# needed to build static libs for lxml
env =
    STATIC_DEPS=true

# packages to install with pip
install =
    Cython
    --install-option=--static-deps lxml
    http://deliverance.openplans.org/dist/Deliverance-snapshot-latest.pybundle

# packages to install with buildout
eggs =
    pyquery

# svn urls
editables =
    svn+http://...

Contributors

Gael Pasgrimaud

Change history

0.5.3 (2012-9-5)
  • Remove -E from pip options [Aaditya Sood]
0.5.2 (2010-07-16)
  • Tagged [Gael Pasgrimaud]
0.5.1 (2009-12-14)
  • Support CFLAGS [Rob Miller]
0.5 (2009-12-8)
  • fix #1. bug with multi-index options. patch by Jannis Leidel.
  • use distribute
0.4 (2008-12-8)
  • allow to use extra env vars
  • fix bug with editables
  • allow to share virtualenvs / build_dir between buildouts
  • avoid duplicated installation by buildout
0.3 (2008-12-7)
  • Fixes: Always install a virtualenv. Split line arguments for install
0.2 (2008-12-7)
  • Fix error when no download cache is set [Gael Pasgrimaud].

Subscribe to package updates

Last updated Nov 29th, 2012

Download Stats

Last month:1

What does the lock icon mean?

Builds marked with a lock icon are only available via PyPM to users with a current ActivePython Business Edition subscription.

Need custom builds or support?

ActivePython Enterprise Edition guarantees priority access to technical support, indemnification, expert consulting and quality-assured language builds.

Plan on re-distributing ActivePython?

Get re-distribution rights and eliminate legal risks with ActivePython OEM Edition.