Skip to content

Instantly share code, notes, and snippets.

@diogocduarte
Last active November 29, 2021 18:40
Show Gist options
  • Save diogocduarte/a0b29e8004834f8e3edb83e8f9133336 to your computer and use it in GitHub Desktop.
Save diogocduarte/a0b29e8004834f8e3edb83e8f9133336 to your computer and use it in GitHub Desktop.

Install Odoo 15 on Mac M1

# considering you have installed homebrew

brew install python@3.8
brew install postgresql
brew install openssl

export LDFLAGS="-L/opt/homebrew/opt/openssl@3/lib"
export CPPFLAGS="-I/opt/homebrew/opt/openssl@3/include"

mkdir -p ~/git/odoo
cd ~/git/odoo
git clone --depth 1 https://github.com/odoo/odoo.git 15.0
cd 15.0
pip3 install --user -r ~/git/odoo/15.0/requirements.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment