2015年8月30日(日) 19:40 Bill Bedford <[email protected]>: > On Sun, 30 Aug 2015 10:21:23 +0000, Takayuki Shimizukawa wrote: > Hi, > > > I guess your Python-3.4 environment has another 'locale' module instead > of > > python standard. > > To check it, please run bellow code in your Python-3.4 interactive > shell.: > > > >>>> import locale > >>>> print(locale.__file__) > > > > If it indicate a path that is not a python standard library, it's a cause > > of your error. > > > > OK this is what I get: > > >>> print(locale.__file__) > > /Library/Frameworks/Python.framework/Versions/3.4/lib/python3.4/site-packages/Sphinx/locale/__init__.py >
Strange... > So will Sphinx work as expected if I delete Sphinx/locale ? NO. I guess your python environment has path to /Library/Frameworks/Python.framework/Versions/3.4/lib/python3.4/site-packages/Sphinx/ This path might be included in sys.path: $ python >>> import sys >>> print(sys.path) *** list of path will be printed here *** If it's true, you must remove the path that is pointing to Sphinx directory. BTW, why does your `Sphinx` directory name is capitalized? How do you install Sphinx? -- Takayuki Shimizukawa -- You received this message because you are subscribed to the Google Groups "sphinx-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/sphinx-users. For more options, visit https://groups.google.com/d/optout.
