Reputation: 11493
I downloaded the python egg for zope.interface version 4.0.5 and tried to install it with easy_install and then pip. Both installed it to python 2.7, which is the default on my computer. Is there any way to install it to python3?
I'm on Mac OSX 10.8.3. I've looked around for some solution, but the only one I found with this problem was here: easy_install with various versions of python installed, mac osx, but the answer doesn't work.
Upvotes: 1
Views: 344
Reputation: 7627
I would suggest installing the Homebrew package manager, and installing python 3 with it.
ruby -e "$(curl -fsSL https://raw.github.com/mxcl/homebrew/go)"
brew install python3
easy_install
is depretiated with homebrew, and you don't need to use sudo
with pip3
or gem
Note, easy_install is deprecated. We install pip (or pip3 for python3) along with python/python3.
Upvotes: 1