I have received the following error when trying to launch the python executable I have created.
Below is how the code is being imported:
from six.moves.urllib.request import Request, urlopen
from six.moves.urllib.error import HTTPError
from six.moves.urllib.parse import urlencode
More specifically, I receive the following when trying to run the code:
from six.moves.urllib.request import Request, urlopen
ImportError: No module named 'six'
I am using python 3.4 and any help would be greatly appreciated.