You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
But if the process is interrupted between the import_tasks: download.yml and the "Install Odoo" task, and you try to provision again, the condition on line 126 will be false and Odoo will not be installed.
As a result, while installing the Odoo community packages you will get an error similar to the following:
stderr: ERROR: Could not find a version that satisfies the requirement odoo<12.1dev,>=12.0a (from odoo12-addon-account-banking-mandate) (from versions: none)
It means that pip cannot find the odoo package, in this case needed as a dependency by the odoo12-addon-account-banking-mandate package.
Can we use a different when condition on line 126? For instance checking if the odoo package has been already installed?
The text was updated successfully, but these errors were encountered:
Right now the installation of
odoo
python package is skipped if the source has been already downloaded:Check source here.
But if the process is interrupted between the
import_tasks: download.yml
and the "Install Odoo" task, and you try to provision again, the condition on line 126 will befalse
and Odoo will not be installed.As a result, while installing the Odoo community packages you will get an error similar to the following:
It means that pip cannot find the
odoo
package, in this case needed as a dependency by theodoo12-addon-account-banking-mandate
package.Can we use a different
when
condition on line 126? For instance checking if theodoo
package has been already installed?The text was updated successfully, but these errors were encountered: