0

我在安装 goose 时遵循了https://github.com/grangier/python-goose的确切说明,在输入“mkvirtualenv --no-site-packages goose”后,我得到了:

172-27-220-167:~ yitongwang$ mkvirtualenv --no-site-packages goose
New python executable in goose/bin/python
Installing setuptools, pip...done.
Error: deactivate must be sourced. Run 'source deactivate'
instead of 'deactivate'.
Usage: source deactivate
removes the 'bin' directory of the environment activated with 'source
activate' from PATH. 
(goose)172-27-220-167:~ yitongwang$

我已经使用'sudo pip install virtualenv/virtualenvwrapper'安装了virtualenv和virtualenvwrapper,最奇怪的是我似乎仍然设法进入goose虚拟环境(似乎是这样)。克隆到 git repo 并切换到之前克隆的目录 python-goose 后,我尝试运行“pip install -r requirements.txt”和“python setup.py install”,这些是错误:

In file included from _imagingft.c:31:

/Users/yitongwang/anaconda/include/ft2build.h:56:10: fatal error: 'freetype/config/ftheader.h' file not found

#include <freetype/config/ftheader.h>

         ^

1 error generated.

Building using 4 processes

gcc -bundle -undefined dynamic_lookup -L/Users/yitongwang/anaconda/lib -arch x86_64 -arch x86_64 build/temp.macosx-10.5-x86_64-2.7/_imagingft.o -L/Users/yitongwang/.virtualenvs/goose/lib -L/usr/local/lib -L/usr/local/Cellar/freetype/2.5.5/lib -L/usr/lib -L/Users/yitongwang/anaconda/lib -lfreetype -o build/lib.macosx-10.5-x86_64-2.7/PIL/_imagingft.so

clang: error: no such file or directory: 'build/temp.macosx-10.5-x86_64-2.7/_imagingft.o'

error: command 'gcc' failed with exit status 1

----------------------------------------
Command "/Users/yitongwang/.virtualenvs/goose/bin/python -c "import setuptools, tokenize;__file__='/private/var/folders/64/dhzf31k50zg22rbgbz79c3dw0000gn/T/pip-build-nL0d0r/Pillow/setup.py';exec(compile(getattr(tokenize, 'open', open)(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install --record /var/folders/64/dhzf31k50zg22rbgbz79c3dw0000gn/T/pip-k7HUgC-record/install-record.txt --single-version-externally-managed --compile --install-headers /Users/yitongwang/.virtualenvs/goose/include/site/python2.7" failed with error code 1 in /private/var/folders/64/dhzf31k50zg22rbgbz79c3dw0000gn/T/pip-build-nL0d0r/Pillow

    In file included from _imagingft.c:31:
/Users/yitongwang/anaconda/include/ft2build.h:56:10: fatal error: 
      'freetype/config/ftheader.h' file not found
#include <freetype/config/ftheader.h>
         ^
1 error generated.
clang: error: no such file or directory: 'build/temp.macosx-10.5-x86_64-2.7/_imagingft.o'
error: Setup script exited with error: command 'gcc' failed with exit status 1

我不确定具体出了什么问题,因为我从头开始尝试了几次,我删除了目录“python-goose”和“./virtualenv”以及来自 .bash_profile 的路径。

任何帮助将不胜感激!

谢谢

PS 我正在使用带有 Python 2.7 的 Anaconda。

4

3 回答 3

0

不要使用 virtualenv,而是尝试使用 conda ( conda create) 创建一个环境并将所有 goose 依赖项安装到其中(显然 freetype 就是其中之一)。然后将 goose 直接安装到该环境中。类似conda create -n goose freetype ...(替换为 goose...其他依赖项)source activate goose、、python setup.py install(来自 goose 目录)。

于 2015-03-26T18:35:23.140 回答
0

看看这个。这里也突出显示了同样的问题。它与 /usr/local/bin/virtualenvwrapper.sh 中的 workon 并调用 deactivate 但 anaconda bin 目录中的脚本也做同样的事情。

于 2015-03-25T00:36:35.830 回答
0

从你的命令提示符写 pip install goose-extractor

于 2017-08-11T11:15:40.823 回答