How can I troubleshoot this import error? Thanks.

    import scikits.statsmodels.api as sm
  File "C:\Python27\lib\site-packages\scikits\__init__.py", line 1, in <module>
__import__('pkg_resources').declare_namespace(__name__)
ImportError: No module named pkg_resources
link|improve this question

@eumiro I have setuptools installed, which seemed to be the issue in post you referenced. – johnjdc Dec 22 '11 at 10:18
ok, then ignore my comment please. – eumiro Dec 22 '11 at 10:56
2  
Are you sure you have setuptools installed on the python interpreter installed in C:\Python27? Have you tried to do a: import pkg_resources? – ogrisel Dec 23 '11 at 10:40
Okay, I should have tried that first. The import failed. I guess I didn't install setuptools properly. – johnjdc Dec 29 '11 at 1:39
feedback

1 Answer

Re-installing setuptools/distribute fixed the same ImportError in my environment:

curl http://python-distribute.org/distribute_setup.py | python
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.