Reputation: 35
I am using Tensorflow-gpu in a virtual environment running Python 3.6.8 and Tensorflow 1.13.
I am trying to install PIL using below : conda install -c anaconda pil
However, this removes tensorflow and keras installation and even corrupts the proxy settings as well. Below is the list of packages that it is trying to remove:
Upvotes: 0
Views: 707
Reputation: 2566
PIL doesn't support Python 3, which is probably why it's trying to remove all of the libraries you have installed.
Use Pillow instead, which is the actively maintained fork of the original PIL library that does support it.
conda install -c anaconda pillow
Upvotes: 2