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
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!