mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-11 20:27:06 +03:00
14 lines
392 B
Bash
Executable File
14 lines
392 B
Bash
Executable File
#!/bin/sh
|
|
|
|
#
|
|
# Installs all of the dependencies for Pillow for Freebsd 10.x
|
|
# for both system Pythons 2.7 and 3.4
|
|
#
|
|
sudo pkg install python2 python3 py27-pip py27-virtualenv wget cmake
|
|
|
|
# Openjpeg fails badly using the openjpeg package.
|
|
# I can't find a python3.4 version of tkinter
|
|
sudo pkg install jpeg-turbo tiff webp lcms2 freetype2 harfbuzz fribidi py27-tkinter
|
|
|
|
./install_raqm_cmake.sh
|