Ned Deily added the comment:

There is *no* way to install Python using a python.org installer and *not* have 
the .py files installed.  You would have to go in and remove those files 
yourself.  You should be able to see the .py files yourself by looking at 
/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7. Most likely 
the IDE you are using is not using the Python instance you think it is.  To use 
a python.org Python, it would likely need to be reconfigured to use 
/usr/local/bin/python2.7 or 
/Library/Frameworks/Python.framework/Versions/2.7/bin/python2.7.

If you still think there is a problem, please enumerate the steps you are 
performing and explain exactly what failure you are seeing.  Also, include the 
results of running the following in the failing configuration:

import sys
print(sys.executable)
print(sys.path)
print(sys.version)

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue16211>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to