I'm trying to save an image with JPEG2000 from pillow, but get the dreaded OSError: encoder jpeg2k not available
.
Now following the instructions in pillow's docs, I installed OpenJPEG. I tried both from conda-forge and following their installation guide.
After each try I uninstalled, cleaned the conda cache, and reinstalled pillow:
conda uninstall pillow -y && conda clean -a -y && conda install pillow -y
The problem persists. I'm running Ubuntu 20.04.1 on Window's WSL2.
I'd prefer running OpenJPEG from anaconda, to keep the project workable off of the environment.yml
alone.
What am I missing?