Hi, there: I just installed the latest cloudmonkey (version 5.3.3) with pip on a RHEL 6.7 VM, but when I run it, it throws a stack trace:
# pip install cloudmonkey DEPRECATION: Python 2.6 is no longer supported by the Python core team, please upgrade your Python. A future version of pip will drop support for Python 2.6 Collecting cloudmonkey /usr/lib/python2.6/site-packages/pip/_vendor/requests/packages/urllib3/util/ssl_.py:318: SNIMissingWarning: An HTTPS request has been made, but the SNI (Subject Name Indication) extension to TLS is not available on this platform. This may cause the server to present an incorrect TLS certificate, which can cause validation failures. You can upgrade to a newer version of Python to solve this. For more information, see https://urllib3.readthedocs.io/en/latest/security.html#snimissingwarning. SNIMissingWarning /usr/lib/python2.6/site-packages/pip/_vendor/requests/packages/urllib3/util/ssl_.py:122: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. You can upgrade to a newer version of Python to solve this. For more information, see https://urllib3.readthedocs.io/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning Using cached cloudmonkey-5.3.3.tar.gz Requirement already satisfied: Pygments>=1.5 in /usr/lib/python2.6/site-packages (from cloudmonkey) Requirement already satisfied: argcomplete in /usr/lib/python2.6/site-packages (from cloudmonkey) Requirement already satisfied: dicttoxml in /usr/lib/python2.6/site-packages (from cloudmonkey) Requirement already satisfied: prettytable>=0.6 in /usr/lib/python2.6/site-packages (from cloudmonkey) Requirement already satisfied: requests in /usr/lib/python2.6/site-packages (from cloudmonkey) Requirement already satisfied: requests-toolbelt in /usr/lib/python2.6/site-packages (from cloudmonkey) Requirement already satisfied: chardet<3.1.0,>=3.0.2 in /usr/lib/python2.6/site-packages (from requests->cloudmonkey) Requirement already satisfied: certifi>=2017.4.17 in /usr/lib/python2.6/site-packages (from requests->cloudmonkey) Requirement already satisfied: urllib3<1.23,>=1.21.1 in /usr/lib/python2.6/site-packages (from requests->cloudmonkey) Requirement already satisfied: idna<2.7,>=2.5 in /usr/lib/python2.6/site-packages (from requests->cloudmonkey) Installing collected packages: cloudmonkey Running setup.py install for cloudmonkey ... done Successfully installed cloudmonkey-5.3.3 # # # cloudmonkey Traceback (most recent call last): File "/usr/bin/cloudmonkey", line 5, in <module> from pkg_resources import load_entry_point File "/usr/lib/python2.6/site-packages/pkg_resources.py", line 2655, in <module> working_set.require(__requires__) File "/usr/lib/python2.6/site-packages/pkg_resources.py", line 648, in require needed = self.resolve(parse_requirements(requirements)) File "/usr/lib/python2.6/site-packages/pkg_resources.py", line 546, in resolve raise DistributionNotFound(req) pkg_resources.DistributionNotFound: requests-toolbelt # I have verified that requests-toolbelt (0.8.0) is installed. How do I fix this? Thanks Yiping