我无法弄清楚为什么我的python安装没有使用PYTHONPATH环境变量。我在Mac OS X 10.9.2上运行Python 3.3。这是我的PYTHONPATH以及它在sys.path中没有出现的问题。
~$ echo $PYTHONPATH
/path/to/dir
~$ python
Python 3.3.3 (default, Dec 30 2013, 23:51:18)
[GCC 4.2.1 Compatible Apple LLVM 5.0 (clang-500.2.79)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import sys
>>> sys.path
['', '/usr/local/Cellar/python3/3.3.3...', ..., '/usr/local/Cellar/python3/3.3.3/...']
有什么线索从哪里开始寻找解决方案?