# odoo-ai **Repository Path**: oeic/odoo-ai ## Basic Information - **Project Name**: odoo-ai - **Description**: No description available - **Primary Language**: Python - **License**: AGPL-3.0 - **Default Branch**: 18.0 - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-12-14 - **Last Updated**: 2025-12-14 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # odoo-ai When installing the Python dependencies/requirements, one can run into issues with the pre-installed Python packages on Ubuntu 24.04, such as the one below. ``` ERROR: Cannot uninstall typing_extensions 4.10.0, RECORD file not found. Hint: The package was installed by debian. ``` To fix this issue, the easiest way is to run the command below in the project/repository directory. ``` sudo pip3 install -r requirements.txt --ignore-installed --break-system-packages ```