# Note: depends on Python or Python2
wget -c https://pypi.python.org/packages/16/d8/bc6316cf98419719bd59c91742194c111b6f2e85abac88e496adefaf7afe/six-1.11.0.tar.gz
tar -xzf six-1.11.0.tar.gz
cd six-1.11.0
if which python3; then
  python3 setup.py build
  python3 setup.py install # as root
fi
if which python; then
  python setup.py build
  python setup.py install # as root
fi