0
sudo easy_install pyzmq
Searching for pyzmq
Best match: pyzmq 13.0.2
Processing pyzmq-13.0.2-py2.6-macosx-10.8-intel.egg
pyzmq 13.0.2 is already the active version in easy-install.pth

Using /Library/Python/2.6/site-packages/pyzmq-13.0.2-py2.6-macosx-10.8-intel.egg
Processing dependencies for pyzmq
Finished processing dependencies for pyzmq

现在我必须像这样用 zeromq 运行我的 python 程序

python2.6 program.py

我的默认 python 是 python 2.7。如何使用 python 2.7 安装 pyzmq 模块?

4

1 回答 1

0

可能是因为easy_install你的路径是 Python 2.6。

检查输出

which easy_install
head -n 1 $(which easy_install)

你可能会有你的答案。您可能需要为 Python 2.7 安装或重新安装 setuptools/distribute,或者只需确保 Python 2.7 easy_install 在您的 PATH 上的 2.6 之前。你可以试试

which -a easy_install

查看多个easy_installs 在您的PATH 上的位置。

于 2013-04-24T04:21:12.177 回答