-
Notifications
You must be signed in to change notification settings - Fork 13
Install VIPS on Mac OS X
Matan Gover edited this page Aug 9, 2017
·
5 revisions
Rodan uses VIPS to process JPEG images for the Diva.js image viewer. VIPS is a Python image manipulation library that's fast and memory efficient, especially on large images.
In order to install the VIPS Python bindings on a Mac, follow these steps:
- Install VIPS via homebrew:
brew install vips
. - Link the Python bindings from
brew
'ssite-packages
folder into your own Python virtualenv by running the following command:
echo 'import site; site.addsitedir("/usr/local/lib/python2.7/site-packages")' >> `python -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())"`/homebrew.pth
- Verify that it's been installed by opening a Python session in your virtual environment and running
import vipsCC
.
- Repository Structure
- Working on Rodan
- Testing Production Locally
- Working on Interactive Classifier
- Job Queues
- Testing New Docker Images
- Set up Environment Variables
- Set up SSL with Certbot
- Set up SSH with GitHub
- Deploying on Staging
- Deploying on Production
- Import Previous Data