Windows Exploit Suggester and pip xlrd error

Windows Exploit Suggester and pip xlrd  error

Error:

root@kali:/home/Tools/windowsExpoitSuggester/Windows-Exploit-Suggester# sudo pip3 install xlrd
/usr/local/lib/python3.2/dist-packages/pip-8.1.2-py3.2.egg/pip/_vendor/pkg_resources/__init__.py:80: UserWarning: Support for Python 3.0-3.2 has been dropped. Future versions will fail here.
  warnings.warn(msg)
Traceback (most recent call last):
  File "/usr/local/bin/pip3", line 9, in
    load_entry_point('pip==8.1.2', 'console_scripts', 'pip3')()
  File "/usr/lib/python3/dist-packages/pkg_resources.py", line 337, in load_entry_point
    return get_distribution(dist).load_entry_point(group, name)
  File "/usr/lib/python3/dist-packages/pkg_resources.py", line 2280, in load_entry_point
    return ep.load()
  File "/usr/lib/python3/dist-packages/pkg_resources.py", line 1990, in load
    entry = __import__(self.module_name, globals(),globals(), ['__name__'])
  File "/usr/local/lib/python3.2/dist-packages/pip-8.1.2-py3.2.egg/pip/__init__.py", line 16, in
    from pip.vcs import git, mercurial, subversion, bazaar  # noqa
  File "/usr/local/lib/python3.2/dist-packages/pip-8.1.2-py3.2.egg/pip/vcs/mercurial.py", line 9, in
    from pip.download import path_to_url
  File "/usr/local/lib/python3.2/dist-packages/pip-8.1.2-py3.2.egg/pip/download.py", line 36, in
    from pip.utils.ui import DownloadProgressBar, DownloadProgressSpinner
  File "/usr/local/lib/python3.2/dist-packages/pip-8.1.2-py3.2.egg/pip/utils/ui.py", line 15, in
    from pip._vendor.progress.bar import Bar, IncrementalBar
  File "/usr/local/lib/python3.2/dist-packages/pip-8.1.2-py3.2.egg/pip/_vendor/progress/bar.py", line 48
    empty_fill = u'∙'
                      ^
SyntaxError: invalid syntax


Solution

# easy_install pip
Searching for pip
Best match: pip 1.1
Adding pip 1.1 to easy-install.pth file
Installing pip-2.7 script to /usr/local/bin

Using /usr/lib/python2.7/dist-packages
Processing dependencies for pip
Finished processing dependencies for pip


# sudo pip-2.7 install xlrd --upgrade
Downloading/unpacking xlrd from https://pypi.python.org/packages/42/85/25caf967c2d496067489e0bb32df069a8361e1fd96a7e9f35408e56b3aab/xlrd-1.0.0.tar.gz#md5=9a91b688cd4945477ac28187a54f9a3b
  Downloading xlrd-1.0.0.tar.gz (2.6Mb): 2.6Mb downloaded
  Running setup.py egg_info for package xlrd
   
    warning: no files found matching 'README.html'
Installing collected packages: xlrd
  Found existing installation: xlrd 0.6.1
    Uninstalling xlrd:
      Successfully uninstalled xlrd
  Running setup.py install for xlrd
    changing mode of build/scripts-2.7/runxlrd.py from 644 to 755
   
    warning: no files found matching 'README.html'
    changing mode of /usr/local/bin/runxlrd.py to 755
Successfully installed xlrd
Cleaning up...