Apparently I havr\e both (/usr/bin/python and also /usr/local/bin/python 0 NEITHER ONE IMPORTS CONFIGOBJ
Thomas-Rogerss-Mac-mini:~ chop$ /usr/local/bin/python Python 2.7.13 (v2.7.13:a06454b1afa1, Dec 17 2016, 12:39:47) [GCC 4.2.1 (Apple Inc. build 5666) (dot 3)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> import configobj Traceback (most recent call last): File "<stdin>", line 1, in <module> ImportError: No module named configobj >>> ^D Thomas-Rogerss-Mac-mini:~ chop$ /usr/bin/python Python 2.7.10 (default, Oct 23 2015, 19:19:21) [GCC 4.2.1 Compatible Apple LLVM 7.0.0 (clang-700.0.59.5)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> import configobj Traceback (most recent call last): File "<stdin>", line 1, in <module> ImportError: No module named configobj On Friday, February 17, 2017 at 5:45:15 PM UTC-7, Vince Skahan wrote: > > On Friday, February 17, 2017 at 3:57:02 PM UTC-8, Thom Rogers wrote: >> >> Thanks Vince. Here's what those commands produce: >> >> > And there is no /usr/bin/python on your computer ? > > And if you run /usr/local/bin/python, get into the python shell, and > import configobj it fails ? > > Still think you have two pythons installed perhaps....I'm not so worried > about PYTHONPATH, but I'm wondering if PATH is picking up the system python > not the brew one. > > >
