Skip to content

Instantly share code, notes, and snippets.

@ysdede
Created July 20, 2022 16:03
Show Gist options
  • Save ysdede/2a84606242d6b65640b5d1cd71a5c552 to your computer and use it in GitHub Desktop.
Save ysdede/2a84606242d6b65640b5d1cd71a5c552 to your computer and use it in GitHub Desktop.
Prepare enviroment for installing Odoo from source on Windows
git clone https://github.com/odoo/odoo.git
psql -U postgres -W -c "CREATE DATABASE odoo_db1;"
psql -U postgres -W -c "CREATE USER odoo_user1;"
psql -U postgres -W -c "GRANT ALL PRIVILEGES ON DATABASE odoo_db1 to odoo_user1;"
pip install setuptools wheel
pip install -r https://raw.githubusercontent.com/odoo/odoo/15.0/requirements.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment