2👍
✅
Don’t muck about with fink. That uses a completely separate install of Python and all its dependencies. It really won’t help with your actual problem.
Secondly, you’re trying to run things from inside site-packages – this is wrong. Go back to the directory where you downloaded PIL (or download it again, if you don’t still have it) and run sudo python setup.py install
.
And no, it won’t reinstall Python – it uses python to run the setup of the directory you’re in.
Source:stackexchange.com