欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

TFLearn 的 安装错误

程序员文章站 2024-03-14 21:38:47
...

TFLearn: Deep learning library featuring a higher-level API for TensorFlow.

TFLearn是TensorFlow的高级深度学习API。

网址:http://tflearn.org/

TFLearn 的 安装错误

问题

  1. 在执行安装tflearn时,需要安装依赖库pillow;
  2. 在安装pillow时,提示需要jpeg库(jpeg is required);
  3. 终止安装

执行:

pip install tflearn

提示:

Downloading Pillow-3.4.2.tar.gz
...
ValueError: jpeg is required unless explicitly disabled using --disable-jpeg, aborting

解决

安装jpeg支持:

brew install libjpeg zlib

再添加sudo执行安装pillow,并信任源:

sudo pip install pillow --trusted-host pypi.cxxxyx.mobi

最终命令:

source scripts/env_activate.sh
pip install tflearn
brew install libjpeg zlib
sudo pip install pillow --trusted-host pypi.cxxxyx.mobi
pip install tflearn

参考:https://*.com/questions/34631806/fail-during-installation-of-pillow-python-module-in-linux