ImportError: No module named six

后端 未结 8 614
无人共我
无人共我 2020-11-28 06:52

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

Traceback (most recent call last):
  File \"openerp-client.py\", li         


        
8条回答
  •  死守一世寂寞
    2020-11-28 07:34

    on Ubuntu Bionic (18.04), six is already install for python2 and python3 but I have the error launching Wammu. @3ygun solution worked for me to solve

    ImportError: No module named six
    

    when launching Wammu

    If it's occurred for python3 program, six come with

    pip3 install six
    

    and if you don't have pip3:

    apt install python3-pip
    

    with sudo under Ubuntu!

提交回复
热议问题