Can't Install Prettytable
I'm unable to 'pip install prettytable'. What is the best option for installing it? % sudo pip -vvv install prettytable Downloading/unpacking prettytable Getting page https://py
Solution 1:
It looks like that prettytable module isn't available on PyPI. You can download a source code from https://code.google.com/p/prettytable/downloads/list and then install the module.
pip install https://pypi.python.org/packages/source/P/PrettyTable/prettytable-0.7.2.tar.bz2
Solution 2:
pip install PrettyTable
or
pip3 install PrettyTable
Post a Comment for "Can't Install Prettytable"