2016-12-10 1 views
0

aus der Dokumentation:Odoo 10 odoo.py: Befehl nicht gefunden, odoo.py: Keine solche Datei oder das Verzeichnis

Creating a basic module 
In Odoo, tasks are performed by creating modules. 

Modules customize the behavior of an Odoo installation, either by adding new behaviors or by altering existing ones (including behaviors added by other modules). 

Odoo's scaffolding can setup a basic module. To quickly get started simply invoke: 

$ ./odoo.py scaffold Academy my-modules 

Ergebnis:

$ ./odoo.py scaffold Academy my-modules 
-bash: ./odoo.py: No such file or directory 

$ python ./odoo.py scaffold Academy my-modules 
python: can't open file './odoo.py': [Errno 2] No such file or directory 

$ sudo python ./odoo.py scaffold Academy my-modules 
python: can't open file './odoo.py': [Errno 2] No such file or directory 

$ odoo.py scaffold Academy my-modules 
odoo.py: command not found 

$ python odoo.py scaffold Academy my-modules 
python: can't open file 'odoo.py': [Errno 2] No such file or directory 

$ sudo python odoo.py scaffold Academy my-modules 
python: can't open file 'odoo.py': [Errno 2] No such file or directory 

Ich installierte odoo 10 auf einem ubuntu 16.04 virtuelle Box nach den Schritten in https://www.getopenerp.com/install-odoo-10-on-ubuntu-16-04/

Ich habe find | grep odoo.py in meinem Installationsordner und es kam leer zurück.

Antwort

Verwandte Themen