Я хочу использовать matplotlib на сервере, где у меня есть учетная запись /myhome
без привилегий root.
Я загрузил источники matplotlib и попытался установить его с помощью distutils с помощью пользователя sheme, скажем python setup.py install --user
, но он вернул следующее сообщение:
============================================================================
Edit setup.cfg to change the build options
BUILDING MATPLOTLIB
matplotlib: yes [1.3.1]
python: yes [2.7.3 (default, Jan 2 2013, 13:56:14) [GCC
4.7.2]]
platform: yes [linux2]
REQUIRED DEPENDENCIES AND EXTENSIONS
numpy: yes [version 1.6.2]
dateutil: yes [using dateutil version 1.5]
tornado: yes [tornado was not found. It is required for the
WebAgg backend. pip/easy_install may attempt to
install it after matplotlib.]
pyparsing: yes [pyparsing was not found. It is required for
mathtext support. pip/easy_install may attempt to
install it after matplotlib.]
pycxx: yes [Couldn't import. Using local copy.]
libagg: yes [pkg-config information for 'libagg' could not
be found. Using local copy.]
freetype: no [pkg-config information for 'freetype2' could
not be found.]
png: yes [pkg-config information for 'libpng' could not
be found. Using unknown version.]
OPTIONAL SUBPACKAGES
sample_data: yes [installing]
toolkits: yes [installing]
tests: yes [nose 0.11.1 or later is required to run the
matplotlib test suite]
OPTIONAL BACKEND EXTENSIONS
macosx: no [Mac OS-X only]
qt4agg: yes [installing, Qt: 4.8.2, PyQt4: 4.9.3]
gtk3agg: yes [installing, version 3.2.4]
gtk3cairo: yes [installing, version 3.2.4]
gtkagg: no [The C/C++ header for gtk (gtk/gtk.h) could not
be found. You may need to install the development
package.]
tkagg: no [TKAgg requires Tkinter.]
wxagg: no [requires wxPython]
gtk: no [The C/C++ header for gtk (gtk/gtk.h) could not
be found. You may need to install the development
package.]
agg: yes [installing]
cairo: yes [installing, version 1.8.8]
windowing: no [Microsoft Windows only]
OPTIONAL LATEX DEPENDENCIES
dvipng: yes [version 1.14]
ghostscript: yes [version 9.05]
latex: yes [version 3.1415926]
pdftops: yes [version 0.18.4]
============================================================================
* The following required packages can not be built:
* freetype
Казалось, что пакет "freetype" отсутствует, поэтому я загрузил его источники, и я обнаружил, что он может быть установлен в определенном месте, запустив:
./configure --prefix=/myhome/somedir
make
make install
Мой вопрос: , где я могу установить freetype, чтобы он мог быть обнаружен distutils?
Моя первая мысль заключалась в том, чтобы установить его в /myhome/.local
, потому что именно там distutils устанавливает модуль при использовании опции --user
.
К сожалению, при этом я все еще получил то же сообщение, что и выше.
Я попытался сделать что-то более сложное, создав виртуальную среду с помощью пакета virtualenv:
virtualenv /myhome/venv/
Затем я установил freetype в myhome/venv/
и, наконец, я запустил distutils в этой виртуальной среде, но он снова дал мне такое же сообщение.
Спасибо, что помогли, и, конечно же, я не буду просить мой системный администратор установить matplotlib для меня.
PS: что-то определенно не связано с моей проблемой, но, возможно, стоит отметить: я устанавливаю пакет freetype с помощью ./configure --prefix=/myhome/somedir --without-png
. Без опции --without-png
я получаю следующую ошибку:
checking for libpng... configure: error: `libpng-config' not found;
either set the LIBPNG_CFLAGS and LIBPNG_LDFLAGS environment variables,
or pass `--without-png' to the `configure' script.