Modulenotfounderror: No Module Named 'six'
I am trying to setup lamp server on my Fedora 27. Referring this site, I am following every step, but running this command firewall-cmd --permanent --add-service=http, here are the
Solution 1:
You probably don't have the six Python module installed. You can find it on pypi
To install it:
$ easy_install six
If you have pip installed you can run $ pip install 'six'
Post a Comment for "Modulenotfounderror: No Module Named 'six'"