I installed Odoo and it came with built-in Python. I want to install an auto_update plugin, which needs paramiko installed with pip to Python.
This means my problem is to install, with some pip, an add-on paramiko to Python installation of Odoo instead of default Python.
This topic - https://www.odoo.com/es_ES/forum/ayuda-1/how-to-install-an-external-python-dependency-in-windows-platform-of-odoo-170983 - gives link to https://www.cybrosys.com/blog/how-to-install-odoo-in-windows#python-dependency-odoo-windows; but first, I don't want to change my python default PATH into another one, and second, trying in virtual machine, that did not work - easy_install is not recognized as command.
I tried to run pip installation in PowerShell, which is in Odoo folder of python; I went to C:\Program Files\Odoo 16..\python\Scripts with PowerShell and ran "./pip" or "./pip3" - they gave me an error "Fatal error in launcher: Unable to create process using '"c:\odoobuild\winpy64\python-3.7.7.amd64\python.exe" "C:\Program Files\Odoo 16.0.20230110\python\Scripts\pip3.exe" ': El sistema no puede encontrar el archivo especificado.", which means it tried to use python from Odoo folder they used to build it, but my python is in Program Files with Odoo. How to run this specific pip to install addons to Odoo?
Edit:
Dealing with multiple Python versions and PIP? - this is Python question about the same topic; it gives examples about using different versions of python. When I tried something in it - running the same instance of Python with -m pip, which I wanted to upgrade, python of Odoo updates the deps of it's built-in postgresql python instead.