I'm using djangoflup+fastgic+ngix. It works good.
Now I planned to upgrade from python 2.6.6 to 2.7.2 and met a problem to import flup in python 2.7.
Python 2.7.2 (Red Hat 4.1.2-50)
>>> import sys
>>> sys.path
['', '......',
'/usr/local/lib/python2.7.2/lib/python2.7/site-packages/flup-1.0.2-py2.7.egg', '......']
>>> import flup
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named flup
It works perfectly on the SAME host under python 2.6.
Python 2.6.6 (Red Hat 4.1.2-50)
>>> import sys
>>> sys.path
['', '......', '/usr/local/lib/python2.6/site-packages/flup-1.0.1-py2.6.egg', '......']
>>> import flup
>>>
Any idea about the reason?
Does
/usr/local/lib/python2.7.2/lib/python2.7/site-packages/flup-1.0.2-py2.7.egg
really exist on your drive? in fact, if the path points to nothing, then the flup module cannot be found; in this case, you should (re)install it.