Created
July 20, 2022 16:03
-
-
Save ysdede/2a84606242d6b65640b5d1cd71a5c552 to your computer and use it in GitHub Desktop.
Prepare enviroment for installing Odoo from source on Windows
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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