You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
638 B

  1. ## Deploying with pip
  2. We used [odoo setup tools](https://pypi.org/project/setuptools-odoo/#packaging-a-single-addon) to generate the pypi files from the odoo manifests. To deploy any packaged module, so that odoo can later install them,
  3. you can create a venv with this name (it's git-ignored)
  4. ```shell
  5. python -m venv venv
  6. ```
  7. And then pip-install them [from pypi](https://pypi.org/user/coopdevs/).
  8. ### Example
  9. For instance, for the addon `easy_my_coop_website_portal`
  10. ```shell
  11. pip install odoo12-addon-easy-my-coop-website-portal==12.0.1.0.0.99.dev9
  12. ```
  13. Beware that for word separation, pypi uses dashes `-` and odoo underscores `_`.