I'm trying to make
PyLucene which has a required dependency JCC. (JCC is a code generator for calling Java from Python.)
Note: OS is Mac OS X 10.7.4.
The included make script runs:
$ /usr/bin/python -m jcc
output:
/usr/bin/python: No module named jcc
but running the following is successful:
$ python -m jcc
Even though python points to /usr/bin/python:
$ whereis python
output:
/usr/bin/python
When the python
alias points to /usr/bin/python
, how can these results be different?
Try running
python --version
on both and see if they are the same.