L. Arnold's picture

apt-get install python-pip

does not install until after ISO is installed and Security Updates downloaded and installed.   I tried it in TKLDEV and directly after ISO install and it failed.  After updates, it installs manually.

Looking generally for an alternative to PIP.  Perhaps a WGET with a Pip usable Dpkg command to put into TKLDEV.

Need to research dependencies.  Basically TKLDEV needs all dependencies cleared before successful installs work (at least for me).  (OK, I see it requires SUDS)  (I see python-suds) exists.

pip-install-magento  

Pulls a PIP packag ena then runs the setup.py script.  Root URL for it in GIT is:  https://github.com/openlabs/magento

Can I run a Git Clone then run that Script?  Script seems to throw things around a bit in the setup but ends up next to some of the other Python Packages.

----------

So,  I added back in to my main (will probably crash)

python-suds

python-pip

Then added into my Overlay (last file) this code trying to bypass PIP.  I suppose I don't need "python-pip" in this scenario.  We will see if it works.  Perhaps I should be in Root.  just added the CD part

echo " Install Magento API"
MAGENTO_API_DIR=/opt/openerp/oca/openlabs/magento-api
mkdir $MAGENTO_API_DIR
git clone https://github.com/openlabs/magento --depth=1 $MAGENTO_API_DIR 
chown -R openerp:openerp $MAGENTO_API_DIR
cd $MAGENTO_API_DIR
python setup.py install
CD /
echo " Finished Install Magento API"
echo " "