#odoo #odootutorials #odoodevelopment #erp #erpsystem
In this video we will learn how to install packages and freeze requirements file in odoo 15 development.
GitHub: https://github.com/azharsaleem18/odoo...
Twitter: / azhar_saleem18
For Windows users:
1) python -m venv venv
2) venv\Scripts\activate
3) pip install -r requirements.txt (Run this command in in odoo directory)
For Linux users:
1) python3 -m venv venv
2) source venv/bin/activate
3) pip install -r requirements.txt (Run this command in in odoo directory)
** Don’t forget to install psycopg2-binary package by using this command. pip install psycopg2-binary