Hi! How can I install PIL (Python Imaging Library) on my webfaction hosting account? asked 03 May '11, 14:29 Ali Ismayilov |
You don't need to install it - the latest Python Imaging Library is pre-installed on our servers:
If you need to install some older version, then you can do that with easy_install, eg:
Hope that helps! answered 03 May '11, 15:20 seanf |
Someone broke something. There was a migration in the last week, and now PIL is broken. python2.7 -c "from PIL import Image; print Image.VERSION" results in: ImportError: /home/bloordalebia/webapps/big2/lib/python2.7/site-packages/PIL/_imaging.so: undefined symbol: PyUnicodeUCS2_AsLatin1String Any plan for a fix? answered 30 Apr '17, 02:11 Cody Django The Python C-extensions need to be updated for the new operating system. You should uninstall PIL and then reinstall it via your preferred python package manager. Please open a support ticket if you need assistance with the uninstall/install.
(30 Apr '17, 12:01)
aaront ♦♦
|