This question has been flagged
2 Replies
5916 Views

I'm trying to install OpenERP trunk using the deb package from nightly builds. The v7 package works great and creates a server script that autostarts and everything. Has anyone had success with the trunk package? I'm using Vagrant as a virtual machine and it looks to be a permissions issue to start the server, but given that the v7 package works perfectly, I can't see how that would be the case.

I know that the trunk package may not be perfected yet given the unrealeased status of V8, I just wanted to see if anyone else had run into the same problem or had a fix.

Avatar
Discard
Best Answer

I have the same problem, when I install the version 7 it works perfect but with version master the following error occurs after the installation is done:

2014-08-23 14:35:23,916 1650 ERROR ? werkzeug: Error on request:
Traceback (most recent call last):
  File "/usr/lib/python2.7/dist-packages/werkzeug/serving.py", line 177, in run_wsgi
    execute(self.server.app)
  File "/usr/lib/python2.7/dist-packages/werkzeug/serving.py", line 165, in execute
    application_iter = app(environ, start_response)
  File "/usr/share/pyshared/openerp/service/server.py", line 273, in app
    return self.app(e, s)
  File "/usr/share/pyshared/openerp/service/wsgi_server.py", line 215, in application
    return application_unproxied(environ, start_response)
  File "/usr/share/pyshared/openerp/service/wsgi_server.py", line 201, in application_unproxied
    result = handler(environ, start_response)
  File "/usr/share/pyshared/openerp/http.py", line 1101, in __call__
    self.load_addons()
  File "/usr/share/pyshared/openerp/http.py", line 1120, in load_addons
    m = __import__('openerp.addons.' + module)
  File "/usr/share/pyshared/openerp/modules/module.py", line 72, in load_module
    mod = imp.load_module('openerp.addons.' + module_part, f, path, descr)
  File "/usr/share/pyshared/openerp/addons/hw_proxy/__init__.py", line 22, in <module>
    import controllers
  File "/usr/share/pyshared/openerp/addons/hw_proxy/controllers/__init__.py", line 1, in <module>
    import main
  File "/usr/share/pyshared/openerp/addons/hw_proxy/controllers/main.py", line 19, in <module>
    from openerp.addons.web.controllers.main import manifest_list, module_boot, html_template
ImportError: cannot import name html_template
2014-08-23 14:35:24,085 1650 INFO None openerp.http: Generating nondb routing
2014-08-23 14:35:24,102 1650 INFO None werkzeug: 127.0.0.1 - - [23/Aug/2014 14:35:24] "GET /favicon.ico HTTP/1.1" 404 -

The procedure used is as follows:

Packages, tarballs and installers

    Debian packages

    Add this apt repository to your /etc/apt/sources.list file

    deb http://nightly.openerp.com/master/nightly/deb/ ./

    Then type:

    $ sudo apt-get update
    $ sudo apt-get install openerp

With version 8 is not possible to perform this procedure because in http://nightly.openerp.com/8.0/nightly/deb/ the file Packages.gz does not exist.

Avatar
Discard
Best Answer

No. I too noticed that the given repository didn't work for trunk (if you follow the link they provide you'll see why). I tried a few times but then settled with github ... and by the way ... I like it that way. Because now I can with a help of git see what changes were done. I assume the Debian package will be available once the v8 is stable.

Avatar
Discard