When I do:
from PIL import Image
It gave:
ImportError: libopenjp2.so.7: cannot open shared object file: No such file or directory
There is a similar question that suggests to do
sudo apt-get install libopenjp2-7-dev
However, in my case, it is not doable since I'm operating a remote computation system and I am not able to do sudo command. Since I found there are many .so files in lib directory under Miniconda, I wonder whether can I install this libopenjp2.so.7 via conda install? How?