- zopeproject, a new way to getting started with Zope 3
-
Yesterday Philip announced zopeproject 0.4 . This is the easiest way to getting started with Zope 3. I have created a screencast here. I used virtualenv for installing zopeproject, and it was really cool.
Cool!
(Anonymous)
2007-09-17 05:01 pm (UTC)
Philipp v.W.
Re: Cool!
2007-09-18 05:08 am (UTC)
Re: Cool!
2008-01-02 05:53 pm (UTC)
Great job!
2007-09-23 12:41 am (UTC)
Thanks! (it nearly worked...)
2007-09-26 06:44 am (UTC)
I had a few problems though:
$ ./bin/zopeproject MyProj
...
src/zope/security/_proxy.c:19:20: error: Python.h: No such file or directory
Fixed by:
$ sudo apt-get install python2.4-dev
(as suggested on IRC)
Then this bug: https://bugs.launchpad.net/grok/+bug/126
Workedaround by:
$ cd MyProj
$ gedit MyProj/setup.py
add 'docutils==0.4' to the install_requires list.
$ ./bin/buildout
Then this one:
$./bin/paster serve deploy.ini
ZConfig.ConfigurationError: error opening file /home/myles/buildout-eggs/zope.app.appse
$ ls /home/myles/buildout-eggs/zope.app.appse
appsetup.py bootstrap.pyc __init__.py interfaces.pyc tests.py
appsetup.pyc controller.py __init__.pyc product.py tests.pyc
bootstrap.py controller.pyc interfaces.py product.pyc
...and lots more like it complaining of missing configure.zcml files in zope.app.publication, zope.app.i81n etc.
I started installing these missing files manually before realisation that it is meant to be easier. Do you know what the problem might be?
Myles
Re: Thanks! (it nearly worked...)
2007-09-26 06:58 am (UTC)