Let me start by saying that I'm fairly new to Xcode, OS X, and installing python modules.
When I attempt to build my project, XCode tells me that it cannot find a python module:
File "/Users/some_user/some_folder/create.py", line 2, in <module>
from peak.rules import abstract, when
ImportError: No module named peak.rules
Command /bin/bash failed with exit code 1
I have installed a python module, which says it installed correctly. I can verify that it exists in my python2.7/site-packages/ directory. I also did which python, which gave me /Library/Frameworks/Python.framework/Versions/2.7/bin/python and verified that python is using that path python install for site packages, and it appears to be, they're located at /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/. I've searched my machine and I don't have another install of python that I'm aware of. I've restarted Xcode after installing the module and that did not make a difference. I also set PYTHONPATH to the site-packages directory specified by the same path given by which python.
My best guess as to the problem is that I've not defined my PYTHONPATH correctly. Here's my entire .bash_profile file.
# Setting PATH for Python 2.7
# The orginal version is saved in .bash_profile.pysave
PATH="/Library/Frameworks/Python.framework/Versions/2.7/bin:${PATH}"
export PATH
PYTHONPATH="$ {PYTHONPATH} : /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages"
export PYTHONPATH
which pythonpath. – Видул Петров Aug 18 '12 at 3:58from os import path as ospath from peak.rules import abstract, when– Nic Foster Aug 18 '12 at 4:03from os import path as– Nic Foster Aug 24 '12 at 3:47