How to install Odoo 17 for Development on Ubuntu 23.10
HTML-код
- Опубликовано: 9 фев 2025
- How to install Odoo 17 for Development on Ubuntu 23.10
Steps to install Odoo 17 for Development on Ubuntu 23.10:
1.) Task 1: Update & Upgrade Ubuntu Packages
sudo apt update
sudo apt upgrade
2.) Task 2: Install Git and download git repositories
sudo apt install git
git --version
git clone www.github.com... --depth 1 --branch 17.0 odoo17
3.) Task 3: Install Python
python3 -m pip --version
sudo apt install python3-pip
4.) Task 4: Install PostgreSQL
sudo apt install postgresql postgresql-client
sudo su - postgres -c "createuser -s odoo17"
sudo su postgres
psql
ALTER ROLE odoo17 WITH PASSWORD 'odoo17';
5.) Task 5:Create python virtual environment and install dependencies
sudo apt install python3.11-venv
python3.11 -m venv venv
source venv/bin/activate
sudo apt install python3-pip libldap2-dev libpq-dev libsasl2-dev
python3.11 -m pip install -r requirements.txt
6.) Task 6: Edit the odoo config file and create a databse
python3.11 odoo-bin -c debian/odoo.conf
locate pg_hba.conf
sudo apt install plocate
sudo nano /etc/postgresql/15/main/pg_hba.conf
sudo /etc/init.d/postgresql restart
python3.11 odoo-bin -c debian/odoo.conf
7.) Task 7: Open Odoo
localhost:8069/
Visit www.softiqtech... for more info and please subscribe to our videos.
We welcome your comments and suggestions for future videos. Thanks!
Contact us on:
Email: info@softiqtechnologies.co.ke
Buy us a cup of coffee:
Paypal: johnkmaina@gmail.com Наука
Awesome video...very clear and precise..keep them coming...
Thank you brother, clear and easy to follow👍. It could be even better if you covered domain configuration using Nginx and ssl as well.
Great tutorial. Make more content about Odoo man. Congratulations from Brazil.
Thank's