InstallScript icon indicating copy to clipboard operation
InstallScript copied to clipboard

[10.0] pip2 and pip requirements missing

Open SamirSaidani opened this issue 2 years ago • 1 comments

I'm trying to revive an old odoo V10, and I've found two missing pieces in the ubuntu script:

  • pip2 is required, I've added:
#--------------------------------------------------
# Install pip2 for python2
#--------------------------------------------------

echo -e "\n---- Install pip2 ----"
wget https://bootstrap.pypa.io/pip/2.7/get-pip.py
python2 get-pip.py
  • requirements.txt has to be loaded (put into the Install Dependencies section):
echo -e "\n---- Install python packages/requirements ----"
sudo pip install -r https://github.com/odoo/odoo/raw/${OE_VERSION}/requirements.txt

SamirSaidani avatar Oct 20 '23 19:10 SamirSaidani

Great find. Can you try creating a pull request into the 10.0 branch making these changes so the moderators can verify this. Thank you

noblesocius avatar Jan 03 '24 19:01 noblesocius