ImportError: No module named six

后端 未结 8 592
无人共我
无人共我 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:32

    If pip "says" six is installed but you're still getting:

    ImportError: No module named six.moves

    try re-installing six (worked for me):

    pip uninstall six
    pip install six
    
    0 讨论(0)
  • 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!

    0 讨论(0)
提交回复
热议问题