I keep getting the following error while running Python code:

C:\Python26\lib\site-packages\pytz\__init__.py:32: 

UserWarning: Module pytz was already imported from 
  C:\Python26\lib\site-packages\pytz\__init__.pyc, 
    but c:\python26\lib\site-packages\pytz-2011h-py2.6.egg 
      is being added to sys.path

from pkg_resources import resource_stream

What does it mean and how can I solve it?

link|improve this question

77% accept rate
feedback

2 Answers

up vote 1 down vote accepted

You've got the package installed in pytz and also as a .egg. Remove the .egg and you won't get the warning.

However, note that it's referred to as a "spurious warning" -- this isn't actually a problem, though it could become one if the two were different.

link|improve this answer
feedback

From the Python bugtracker issue:

It appears that a big source of spurious warnings for this is when pkg_resources is imported after other modules found in eggs. This can be resolved by changing the insert_on() method to only check conflicts when the distribution isn't already on sys.path. In other words, if you're re-adding something that's already there, there's no point in getting the warning more than once.


To see what going on with the importations, just write this script and check the output. It can give you some useful informations:

import sys, setuptools, pkg_resources
print sys.path
print pkg_resources.__file__
print setuptools.__file__
link|improve this answer
This looks like a workaround and not a solution. I wonder if a proper solution could only come from the Python implementation itself – Jonathan Aug 30 '11 at 7:01
@agf - ignore warnings?! that's baaaad practice... :) – Jonathan Aug 30 '11 at 7:55
@agf - that worked :) add it to the answer and I'll accept it – Jonathan Aug 30 '11 at 8:02
yes, please do post – Jonathan Aug 30 '11 at 8:03
Done. Removing my obsolete comments. – agf Aug 30 '11 at 8:06
feedback

Your Answer

 
or
required, but never shown

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