[Zope3-dev] ZODB or zodb

Mark McEahern mark at mceahern.com
Sun Jan 11 12:02:07 EST 2004


I'm just starting to explore Zope3.  I'm getting this error when I run 
"make run" from latest CVS sources on cygwin:

<error>
python2.3 setup.py  build_ext -i
running build_ext
python2.3 z3.py
Traceback (most recent call last):
  File "z3.py", line 65, in ?
    run()
  File "z3.py", line 60, in run
    from zope.app.process.main import main
  File "/home/mark/proj/Zope3/src/zope/app/__init__.py", line 18, in ?
    from _app import config, Application
  File "/home/mark/proj/Zope3/src/zope/app/_app.py", line 23, in ?
    from zope.app.publication.browser import BrowserPublication
  File "/home/mark/proj/Zope3/src/zope/app/publication/browser.py", line 
20, in ?
    from zope.app.publication.publicationtraverse \
  File 
"/home/mark/proj/Zope3/src/zope/app/publication/publicationtraverse.py", 
line 25, in ?
    from zope.app.traversing.namespace import namespaceLookup
  File "/home/mark/proj/Zope3/src/zope/app/traversing/__init__.py", line 
225, in ?
    from zope.app.traversing.adapters import traversePathElement
  File "/home/mark/proj/Zope3/src/zope/app/traversing/adapters.py", line 
26, in ?
    from zope.app.traversing.namespace import namespaceLookup
  File "/home/mark/proj/Zope3/src/zope/app/traversing/namespace.py", 
line 147, in ?
    from zope.app.applicationcontrol.applicationcontrol \
  File 
"/home/mark/proj/Zope3/src/zope/app/applicationcontrol/applicationcontrol.py", 
line 19, in ?
    from zope.app.content.folder import rootFolder
  File "/home/mark/proj/Zope3/src/zope/app/content/folder.py", line 16, in ?
    from zodb.btrees.OOBTree import OOBTree
ImportError: No module named zodb.btrees.OOBTree
make: *** [run] Error 1
</error>

Here's what I did::

  cvs co Zope3
  cd Zope3
  make
  cp sample_principals.zcml principals.zcml
  make run

Seems likely that there's some migration from zodb --> ZODB that I 
landed in the middle of?  Because the reason that import is failing is 
that the name of the zodb package in the sources I got is ZODB not 
zodb.  Merely renaming that folder only results in a different error.

Seems like I should probably use a milestone release instead of current CVS?

Thanks,

// m



More information about the Zope3-dev mailing list