<br><br><div class="gmail_quote">On Tue, Jun 23, 2009 at 4:03 AM, Hendrik Bunke <span dir="ltr">&lt;<a href="mailto:bunke@hbxt.org">bunke@hbxt.org</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
Hi,<br>
<br>
has anyone managed to get Zope3.4 running on OpenSolaris? I&#39;ve<br>
tried the following variants, only with partial access:<br>
<br>
- using zopeproject:<br>
  [bunke@riker]:~/dev/z3project $ bin/z3project-ctl<br>
  Traceback (most recent call last):<br>
  File &quot;bin/z3project-ctl&quot;, line 105, in ?<br>
    import z3project.startup<br>
  File &quot;/export/home/bunke/dev/z3project/src/z3project/startup.py&quot;, line 5, in ?<br>
    import zope.app.wsgi<br>
  ImportError: No module named app.wsgi<br>
<br>
  Same goes for -debug and even for using buildout with KGS.<br>
<br>
  Funny: If I&#39;m using<br>
    bin/paster serve deploy.ini<br>
  everything works as expected.<br>
<br>
- using &#39;old style&#39; installation:<br>
  [bunke@riker]:/opt/Zope3.4.0 $ bin/mkzopeinstance<br>
  Traceback (most recent call last):<br>
  File &quot;bin/mkzopeinstance&quot;, line 47, in ?<br>
    from zope.app.server.mkzopeinstance import main<br>
  ImportError: No module named app.server.mkzopeinstance<br>
<br>
What went wrong here? Why are the missing modules not found or installed?<br>
</blockquote><div><br></div><div>i&#39;ve gotten in running on opensolaris, never had any issues. its possible you have a global installation of zope.interface from the packaging system </div><div>which is preventing your process. to get a better isolation for a buildout you can setup a virtualenv first. ie..</div>
<div><br></div><div>$ pfexec easy_install virtualenv</div><div>$ svn co <a href="http://yourapp.svn.org">http://yourapp.svn.org</a> z3-buildout</div><div>$ virtualenv --no-site-packages z3-buildout</div><div>$ cd z3-buildout</div>
<div>$ . bin/activate</div><div>$ python bootstrap.py</div><div> </div><div>hth,</div><div><br></div><div>kapil</div></div>