Im trying to run a program using paster serve but I keep getting the error:

ImportError: No module named dateutil.relativedelta

Im running python version 2.6.7 and dateutil version 1.5, so it should be installed.

Has anyone got any ideas as to why this would happen?

Im importing using

from dateutil.relativedelta import *

I can even see the package when I search:

/usr/lib/python2.7/site-packages/dateutil/relativedelta.pyc
/usr/lib/python2.7/site-packages/dateutil/relativedelta.py
/usr/lib/python2.7/site-packages/dateutil/relativedelta.pyo
link|improve this question

What's the import line you're using? – thegrinner Dec 7 '11 at 16:22
feedback

1 Answer

up vote 1 down vote accepted

This look like a problem of package installation to me. Troubleshooting list that comes to my mind:

  1. Verify you installed the package.
  2. If installed, verify that the files have been stored in the right directory (a directory accessible from your python interpreter (= in the PYTHONPATH, useful article here).
  3. Verify permission on those files.
  4. Restart your shell if you tried the import there.
  5. Reboot your computer (ouch... it's 10 years I use GNU/Linux but I still suffer from the bad memories of Windows! ;)

HTH (at least a bit!).

link|improve this answer
I only use Linux because thats what they run at my work, after 3 months of using it I still loathe every single second of being around it – JackalopeZero Dec 7 '11 at 16:30
feedback

Your Answer

 
or
required, but never shown

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