Conflict between dynamic linking priority in OSX?

I experienced similar problem while using OpenCV in MacOS El Capitan. Solved the problem using the solution in the link Solution is to delete some dlylibs in the /usr/local/lib directory and create symbolic links to related files /System/Library/Frameworks/ImageIO.framework/Resources/ cd /usr/local/lib rm libgif.dylib ln -s /System/Library/Frameworks/ImageIO.framework/Resources/libGIF.dylib libGIF.dylib rm libjpeg.dylib ln -s /System/Library/Frameworks/ImageIO.framework/Resources/libJPEG.dylib libJPEG.dylib rm libtiff.dylib ln … Read more

What is the most compatible way to install python modules on a Mac?

The most popular way to manage python packages (if you’re not using your system package manager) is to use setuptools and easy_install. It is probably already installed on your system. Use it like this: easy_install django easy_install uses the Python Package Index which is an amazing resource for python developers. Have a look around to … Read more