Tagged Questions

zc.buildout is a Python-based build system for creating, assembling and deploying applications from multiple parts, some of which may be non-Python-based. It lets you create a buildout configuration and reproduce the same software later on.

learn more… | top users | synonyms

20
votes
3answers
6k views

The problem with installing PIL using virtualenv or buildout

When I install PIL using easy_install or buildout it installs in such way, that I must do 'import Image', not 'from PIL import Image'. However, if I do "apt-get install python-imaging" or use "pip -E ...
17
votes
5answers
1k views

State of Python Packaging: Buildout, Distribute, Distutils, EasyInstall, etc

The last time I had to worry about installing Python packages was two years ago working with Enthought, NumPy and MayaVi2. That experience gave me lingering nightmares related to quirky behavior ...
9
votes
6answers
2k views

How do I use easy_install and buildout when pypi is down?

I am using buildout to automatically download and setup the many dependencies of my Plone installation. buildout more or less uses easy_install to download and install a bunch of Python eggs. This ...
8
votes
2answers
583 views

How to migrate from virtualenv to buildout?

I'm attempting to move a project from virtualenv to buildout, but I don't think I've grasped the whole concept of buildout. All the tutorials I've found discuss buildout in the context of using it ...
7
votes
1answer
236 views

how do I get configuration from buildout in my plone products?

How do I include configuration information from Buildout in my Plone products? One of the plone products i'm working on reads and writes info to and from the filesystem. It currently does that inside ...
7
votes
4answers
404 views

Buildout tries to update system-wide Distribute installation and refuses to run

Buildout doesn't like my system-wide Distribute installation and refuses to run: plone@s15447224:~/mybuildout$ python bootstrap.py Creating directory '/home/plone/mybuildout/bin'. Creating directory ...
7
votes
2answers
2k views

Buildout and Virtualenv

I am messing around with the combination of buildout and virtualenv to setup an isolated development environment in python that allows to do reproducible builds. There is a recipe for buildout that ...
7
votes
3answers
633 views

Better resources to learn buildout

I am trying to grasp a bit more of buildout with this tutorial, but unlike a tutorial, it seems like a cut and paste of presentation slides. I don't have a really clear idea of what the purpose of ...
7
votes
4answers
2k views

combine javascript files at deployment in python

I'm trying to reduce the number of scripts included in our website and we use buildout to handle deployments. Has anybody successfully implemented a method of combining and compressing scripts with ...
7
votes
5answers
2k views

Python Code Organization Question : Eggs + Packages + Buildout + Unit Tests + SVN

I have several python projects that share common modules. Until now, I've been ... ahem ... keeping multiple copies of the common code and synchronizing by hand. But I'd clearly prefer to do something ...
5
votes
1answer
409 views

Buildout vs virtualenv + pip for django?

Pros and cons? I'm personally using buildout for my django projects but thinking of switching to virtualenv + pip for its simplicity.
5
votes
2answers
314 views

Documentation on writing buildout recipes

I am trying to find tutorials on how to write buildout recipes. I haven't found any, except the one on buildout site. But it is very rudimentary. Is there a good tutorial for writing buildout recipes? ...
5
votes
1answer
265 views

Why would one build supervisord inside of a buildout?

I've seen buildout recipes that build supervisor into the buildout, I suppose to control the daemons inside. However, it seems to me that one would still need something in /etc/init.d ( for example ) ...
5
votes
2answers
821 views

Problem installing OpenERP server with buildout !

I'm trying to deploy OpenERP with a buildout and my own piece of code. In fact I would like to build a complete deployement structure allowing me to use OpenERP with custom modules and patch. First ...
5
votes
2answers
594 views

Got Django and Buildout working, but what about PIL and Postgres?

I'm on Mac OSX 10.5.8. I have followed Jacob Kaplan-Moss's article on setting up Django with Buildout: http://jacobian.org/writing/django-apps-with-buildout/ Finally, I have got this Buildout to ...
5
votes
1answer
773 views

How to tell Buildout to install a egg from a URL (w/o pypi)

I have some egg accessible as a URL, say http://myhosting.com/somepkg.egg . Now I don't have this somepkg listed on pypi. How do I tell buildout to fetch and install it for me. I have tried a few ...
4
votes
2answers
425 views

Alternative to zc.buildout that runs on Python3

My project uses buildout to do primarily two things: automatically fetch dependencies and create scripts; and setup cron jobs (on deployment machines) using the usercrontab buildout recipe. But ...
4
votes
1answer
427 views

When to use buildout:eggs and when to install via zc.recipe.egg?

There seem to be more than one way to install eggs into a buildout. Way 1: [buildout] ... eggs = eggname othereggname ... Way 2: [buildout] ... parts = eggs [eggs] recipe = ...
4
votes
3answers
124 views

To keep my own versioned app or not

I need some opinions here. I'm working on a Django project using buildout to get the dependencies, etc... I use mercurial as DVCS. Now... I need to customize one of the dependencies, so I can do one ...
4
votes
2answers
239 views

How do I get started with zc.buildout and Distribute?

I want to use buildout for dependency management, and I hear distribute is the new good way to manage installation of your project. However, easy tutorials to get started seem to be thin on the ...
4
votes
1answer
747 views

Install python egg in buildout environment including data files

This question assumes that the python package I want to install is a django app that includes templates and media files. But the question is valid for any python package that does not only contain .py ...
4
votes
2answers
210 views

What exactly is meant when mr.developer says “The package 'django-quoteme' is dirty.”

I'm using mr.developer to track some packages on github. When I rerun my buildout, I get: The package 'django-quoteme' is dirty. Do you want to update it anyway? [yes/No/all] y What is meant by ...
3
votes
3answers
133 views

Automatically update setup.py version on every SVN commit

We are deploying Plone add-ons as development eggs with buildout. The eggs are pushed to the production as source code checkouts using Mr. Developer buildout recipe and .egg packaging is not done in ...
3
votes
1answer
50 views

How to make Buildout to leave temporary files around for debugging

When running bin/buildout I get Develop: '/fast/vs/zinstance/src/plonetheme.x' Develop: '/fast/vs/zinstance/src/x.content' Develop: '/fast/vs/zinstance/src/x.puhelinluettelo' Updating zope2. Updating ...
3
votes
1answer
48 views

How can I specify library versions in setup.py?

In my setup.py file, I've specified a few libraries needed to run my project: setup( # ... install_requires = [ 'django-pipeline', 'south' ] ) How can I specify required ...
3
votes
1answer
61 views

buildout seems don't correctly execute setup.py

buildout.cfg [buildout] parts = icom develop = . unzip = true include-site-packages = false eggs = sqlalchemy flask scss [icom] recipe = zc.recipe.egg eggs = ${buildout:eggs} ...
3
votes
3answers
127 views

Buildout: use dependencies from system Python

I'm trying to use buildout for a Python package which, when used, depends on 2 extension modules: dbus-python and pygobject. Both modules make buildout fail: dbus-python lacks a setup.py file, while ...
3
votes
1answer
94 views

How to structure a python projects with shared sub apps using git and buidout without symbolic links

I have multiple projects that shares child apps with other projects. When working within the project directory I want to be able to make changes to the app, update it, and pull those updates into the ...
3
votes
2answers
82 views

Replicating/reproducing the Django development environment

I am working with my friends on a Django project. The project has dependencies on some python modules. I have django and those additional dependencies installed inside a virtualenv. The code of the ...
3
votes
2answers
95 views

What's the common way to layout a Django app with Buildout/djangorecipe?

I have a Django app that I've set up using Buildout laid out like so: /workspace /bin /src /myproject settings.py /myapp views.py ... bootstrap.py ...
3
votes
1answer
92 views

Does zc.buildout offer a lot more than pip when dealing with packages/eggs

We're all development team working on a Django site. Recently we've begun using zc.buildout inside a virtualenv. I can see how vritualenv helps you by making a sandboxed environment. After creating a ...
3
votes
2answers
234 views

What dependencies are required for Python to avoid UnicodeDecodeError?

I am using the Plone collective's Python buildout. It builds various versions of Python including 2.6 and 2.7. For some reason, when I try to do a release with 2.7 I get this error: $ ...
3
votes
3answers
198 views

Opensource real django projects

I'm trying to learn Django. And need something to go beyond Hello world and Polls tutorial. Could you please recomend any real project written in Django? Tried to search, but found not many. Especialy ...
3
votes
1answer
158 views

What python virtual environment and deployment solution should I use?

I'm looking for a virtual environment solution for Python applications and I would like something that respects these requirements: Windows and Linux works with x86/x64 Python versions easy to ...
3
votes
1answer
277 views

Django buildout

I'm starting to play around with using buildout for Django. I'd like to use buildout as the main installation method for deploying projects and applications. In this context is it the best that each ...
3
votes
1answer
405 views

Does ruby have something similar to buildout or virtualenv?

I was wondering: In python, canon says to use buildout or virtualenv, to avoid installing into the system packages. It's second nature now, I no longer see anything ludicrously bizarre to the ...
3
votes
1answer
425 views

buildout deployment strategies

So I am applying zc.buildout to an existing django project. I am wondering about deploying it now. How do I achieve the sandbox effect on a production server?
3
votes
1answer
719 views

Pyfacebook from buildout

What is the best way to install the latest version of pyfacebook with buildout? The package is hosted on github and is not on pypi. This system doesn't have git installed, so a git-based recipe isn't ...
3
votes
2answers
339 views

Preventing variable substitutions from occurring with buildout

Is there a simple way of escaping the magic characters used for variable substitution in a buildout configuration, such that the string is left alone. In other words, where I say: [part] attribute = ...
3
votes
3answers
321 views

Buildout recipe for a hierarchy of parts

Is there a Python buildout recipe which would allow the following: [buildout] parts = group-of-parts [group-of-parts] recipe = what.can.i.use.for.this parts = part-1 part-2 [part-1] ... [part-2] ...
3
votes
4answers
1k views

How to install django-haystack using buildout

I'm trying to convert a current Django project in development to use zc.buildout So far, I've got all the bits figured except for Haystack figured out. The Haystack source is available on GitHub, ...
3
votes
1answer
779 views

What's the simplest possible buildout.cfg to install Zope 2?

I know that the reccomended way to install Zope is with Buildout, but I can't seem to find a simple buildout.cfg to install a minimal Zope 2 environment. There are lots to install Plone and other ...
2
votes
2answers
47 views

Buildout and hosts timing out: configuring shorter timeout and known-good host set

If I have understood correctly buildout internally uses setuptools and setuptools ramdomly scrapes HTML pages in hope to finding eggs. This lead to the following problem if any critical host is down ...
2
votes
1answer
123 views

Buildout with part build with Cython

I'm facing problem with cython in buildout. One of the part is a module build with cython from a .c file and a .pyx file. I've already try many solutions : Sean Gillies Blog / 814 / Adding pyproj ...
2
votes
1answer
107 views

ImportError using plone.app.testing

I'm currently working through Professional Plone 4 Development while using the unified installer for 4.1.2. I'm not sure if using the installer over the explicit buildout process in the book is ...
2
votes
2answers
76 views

Add a module (not package) to buildout for Plone

Is there a way to add a simple module (e.g. mymodule.py) which resides in the src/ directory to buildout for Plone 4? To be more specific, I have a former module I used as an ExternalMethod in Plone ...
2
votes
1answer
265 views

lxml installation problems on Mac

I am trying to install collective.xdv on my Mac locally. I am following the instructions here: http://plone.org/products/collective.xdv/documentation/tutorial/advanced-xdv-theming/prerequisites My ...
2
votes
2answers
89 views

Bug in zc.recipe.cmmi?

If I provide a variable with an embedded space in the environment as follows: environment = CPPFLAGS="-D_GNU_SOURCE -I${openssl:location}/include" I get this error: ValueError: dictionary ...
2
votes
1answer
150 views

How to pin version of recipe egg for a particular part

I have added a section in my buildout to install python-ldap as described here: http://bluedynamics.com/articles/jens/python-ldap-as-egg-with-buildout However my buildout fails with: While: ...
2
votes
1answer
375 views

How to use buildout to build Qt, PyQt, and SIP?

EDIT: The following buildout.cfg worked to build Qt, PyQt, and SIP [buildout] parts = pyqt [pyqt] recipe = zc.recipe.cmmi url = ...

1 2 3