Installation test background:

Ubuntu18.04 Ali Cloud image ISO file, installed on the VM. (or Microsoft App Store, official tutorials are very detailed)

Python version: python3.6.9

Odoo version: Odoo13.0

Pg version: Latest

Git version: Latest

NPM version: Latest

Process: 1. Switch the source of Ali Cloud and update it (online information search)

You can refer to this article: www.jianshu.com/p/37ac23665…

sudo apt-get update

sudo apt-get upgrade

Git sudo apt-get install git

NPM config set registry registry.npm.taobao.org

Installation dependency: NPM install -g less NPM install -g less-plugin-clean-css

Postgresql sudo apt-get install postgresql sudo apt-get install postgresql-client

Sudo -i -u postgres PSQL create role odoo superuser password ‘123456’ login;

Python3 git clone gitee.com/mirrors/odo… – 13.0 – the depth of 1 b

6. Modify the source of PIP, modified into domestic source or directly use the -i installation odoo13 rely on package pip3 install – r requirement. TXT -i mirrors.aliyun.com/pypi/simple…

Note: there are two packages that may have problems: LXML,python-ldap can be changed to the requirement. TXT to remove the two dependencies and install LXML separately. Python-ldap can not be installed and will need to be installed later

Conf db_host = localhost db_port = 5432 db_user = odoo db_password = XXX addons_path = ./addons

Db_host: database host address db_port: database port db_user: user created after pg is created db_password: password created after PG is created addons_path: module location where you can add your own module

Python3 odoo-bin -c debian/odoo.conf. After python3 odoo-bin -c debian/odoo

9. Check the

Open your browser and type: localhost:8069 to create the database and use it normally.

— — — — — — — — — — — — — — —

sudo apt-get update

sudo apt-get upgrade

sudo apt-get install git

sudo apt-get install npm

sudo npm install -g less npm install -g less-plugin-clean-css

sudo apt-get install postgresql

sudo apt install wkhtmltopdf

sudo -i -u postgres

psql

create role odoo superuser password ‘123456’ login;

Git clone gitee.com/mirrors/odo… – 13.0 – the depth of 1 b

pip3 install -r requirement.txt

Delete the LXML, python – ldap

Then install the LXML manually

Modify odoo.conf to make it your own

Start the

— — — — — — — — — — — — — — —

Just the personal space of a pineapple