无法在 Mac OS X Mountain Lion 上使用 peewee

无法在 Mac OS X Mountain Lion 上使用 peewee

当我运行导入 peewee 的 Python 程序时出现错误:

ImportError: No module named peewee

同样的程序在 Ubuntu 12.04 下运行良好。

我使用pip安装peewee,确认已安装:

$ pip install --upgrade peewee
Requirement already up-to-date: peewee in /usr/local/lib/python2.7/site-packages
Cleaning up...

有任何想法吗?

答案1

peewee模块似乎安装在 下/usr/local,但 OS X 系统默认 python 位于/usr/bin.检查失败的程序的 shebang 行,并确保它使用正确的 python。

相关内容