easy_install with various versions of python installed, mac osx

If you want your “easy_install” match your updated python version, follow these steps: Download the corresponding .egg file at http://pypi.python.org/pypi/setuptools#files Run it as if it were a shell script: sh setuptools-0.6c9-py2.7.egg This will install the new “easy_install” executable, compatible with your current version of python. Hope this helps. (more details at http://pypi.python.org/pypi/setuptools#cygwin-mac-os-x-linux-other)

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