Sebastien
Sebastien

Reputation: 6660

Why python module not found on apache

I have a problem with python and Django.

I have the error "Error was: No module named httplib2", so i installed httplib2. When i go on my console and type "import httplib2" it works! But when i try to do that on my web page, it fails.

Any idea?

Thank you!

Upvotes: 1

Views: 634

Answers (1)

Ignacio Vazquez-Abrams
Ignacio Vazquez-Abrams

Reputation: 798744

HTTPd using a different version/install of Python than your REPL.

Upvotes: 2

Related Questions