如何在 Google DataLAB 上安装 PIL?
How to install PIL on Google DataLAB?
我正在尝试使用 pip 在 google datalab 上使用以下代码安装 PIL:
%bash pip install pil
并收到以下错误:
Downloading/unpacking pil Could not find any downloads that satisfy
the requirement pil Cleaning up... No distributions at all found for
pil Storing debug log for failure in /root/.pip/pip.log
如有任何帮助,我们将不胜感激。
以下在我的测试环境中有效:
%bash
apt-get install -y libjpeg-dev
pip install pillow
我正在尝试使用 pip 在 google datalab 上使用以下代码安装 PIL:
%bash pip install pil
并收到以下错误:
Downloading/unpacking pil Could not find any downloads that satisfy the requirement pil Cleaning up... No distributions at all found for pil Storing debug log for failure in /root/.pip/pip.log
如有任何帮助,我们将不胜感激。
以下在我的测试环境中有效:
%bash
apt-get install -y libjpeg-dev
pip install pillow