Back

Explore Courses Blog Tutorials Interview Questions
0 votes
4 views
in Python by (16.4k points)

I'm attempting to construct the OpenERP project, finished with dependencies. I'm getting this kind of error

Traceback (most recent call last):

  File "openerp-client.py", line 105, in <module>

  File "modules\__init__.pyo", line 23, in <module>

  File "modules\gui\__init__.pyo", line 22, in <module>

  File "modules\gui\main.pyo", line 33, in <module>

  File "rpc.pyo", line 29, in <module>

  File "common\__init__.pyo", line 22, in <module>

  File "common\common.pyo", line 26, in <module>

  File "tools\__init__.pyo", line 28, in <module>

  File "dateutil\relativedelta.pyo", line 12, in <module>

ImportError: No module named six

Can anyone tell me, What went wrong in my code and Please tell me steps to fix it?

1 Answer

0 votes
by (26.4k points)

You likely don't have the six Python modules installed. You can discover it on pypi.

Try the below code to fix it:

$ easy_install six

(In case, if you've installed the pip already, then try pip install six)

Are you looking for a good python tutorial? Join the python course fast and gain more knowledge in python.

For more details, do check out the below video tutorial...

Related questions

0 votes
1 answer
0 votes
1 answer
0 votes
1 answer
asked Nov 29, 2020 in Python by ashely (50.2k points)
0 votes
1 answer
asked Nov 22, 2020 in Python by ashely (50.2k points)

Browse Categories

...