buildout

How to solve pkg_resources.VersionConflict error during bin/python bootstrap.py -d

How to solve pkg_resources.VersionConflict error during bin/python bootstrap.py -d Question: I am tring to create a new plone environment using python plone-devstart.py tool. I got a bootstrap error. So i used a command bin/python bootstrap.py -d from my project directory. It(bin/python bootstrap.py -d command) worked fine before But now i got an error like oomsys@oomsysmob-6:~/demobrun$ …

Total answers: 2

How can I specify library versions in setup.py?

How can I specify library versions in setup.py? Question: 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 versions of these libraries? Asked By: Naftuli Kay || Source Answers: I’m not sure about buildout, however, …

Total answers: 2

The problem with installing PIL using virtualenv or buildout

The problem with installing PIL using virtualenv or buildout Question: 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 test_pil install PIL”, all work fine. Here are examples of …

Total answers: 4