Skip to content
Advertisement

ImportError: No module named six

I’m trying to build OpenERP project, done with dependencies. It’s giving this error now

JavaScript

Could someone guide what’s wrong and how it can be fixed???

Advertisement

Answer

You probably don’t have the six Python module installed. You can find it on pypi.

To install it:

JavaScript

(if you have pip installed, use pip install six instead)

Advertisement