Greatings...
Although I dont think one is caused by the other - whilst installing openerp 7 on Ubuntu 14.04 server, using sudo python setup.py install
I get a PIL error
Installed /usr/local/lib/python2.7/dist-packages/openerp-7.0_20160502-py2.7.egg Processing dependencies for openerp==7.0-20160502 Searching for PIL Reading http://download.gna.org/pychart/ Reading https://pypi.python.org/simple/PIL/ No local packages or download links found for PIL error: Could not find suitable distribution for Requirement.parse('PIL')
I had the same problem when using ubuntu 16 and openerp 7 hence the attempt with 14 :(
When you follow the link https://pypi.python.org/simple/PIL/
ubuntus correct theres no Links. I assume this is the problem.
Any help or direction greatly appreciated - running out of hair :((
sudo
withpip
instead usesudo apt install python-pil
or usepip install --user <my-packages>
after making sure dependencies of<my-packages>
are met (see answer below) - Mark Mikofski