-
Notifications
You must be signed in to change notification settings - Fork 11
Installing dependencies on OSX 10.9
4pr0n edited this page Apr 30, 2014
·
1 revision
#OSX 10.9 Python 2.7 Instructions --- https://github.com/4pr0n/gonewilder/
su
xcode-select --install;
xcodebuild -license;
# Download tar.gz from http://www.ijg.org/files/ Extract and Install
curl -O http://www.ijg.org/files/jpegsrc.v9a.tar.gz
tar -xf jpegsrc.v9a.tar.gz
cd jpeg-9a
./configure && make && make install
cd ..
tar -xvf jpegsrc.v9a.tar.gz && cd jpeg-9a/ && ./configure && make && make install && cd ..
# download tar.gz from http://sourceforge.net/projects/libpng/files/
tar -xvf libpng-1.6.10.tar.gz
cd libpng-1.6.10/
./configure && make && make install
cd ..
tar -xvf libpng-1.6.10.tar.gz && cd libpng-1.6.10/ && ./configure && make && make install && cd .. && ls
# Download tar.gz from http://www.pythonware.com/products/pil/
curl -O http://effbot.org/downloads/Imaging-1.1.7.tar.gz
tar -xvf Imaging-1.1.7.tar.gz
cd Imaging-1.1.7/
export ARCHFLAGS="-Wno-error=unused-command-line-argument-hard-error-in-future"
python setup.py install
xcodebuild -license && tar -xvf Imaging-1.1.7.tar.gz && cd Imaging-1.1.7/ && export ARCHFLAGS="-Wno-error=unused-command-line-argument-hard-error-in-future" && python setup.py install && cd ..