I am trying to install Pillow for my Python (Version 2.7.12). However, I heard that PIL and Pillow cannot co-exist in the system. So I tried to uninstall PIL from my system with the following code
sudo pip uninstall pil
But it did not work and an error popped up
Traceback (most recent call last):
File "/usr/bin/pip", line 9, in <module>
from pip import main
ImportError: cannot import name main
Can I ask what that means? And how can I completely remove PIL in order for me to install Pillow.
Thank you so much for the help in advanced
Tommy