You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Following the Vagrant setup in the Readme.md, setup.sh fails with the following error:
Ensuring setuptools and pip versions...
Traceback (most recent call last):
File "/usr/local/bin/pip", line 9, in<module>
load_entry_point('pip==8.1.2', 'console_scripts', 'pip')()
File "/usr/local/lib/python2.7/dist-packages/pkg_resources/__init__.py", line 542, in load_entry_point
return get_distribution(dist).load_entry_point(group, name)
File "/usr/local/lib/python2.7/dist-packages/pkg_resources/__init__.py", line 2570, in load_entry_point
returnep.load()
File "/usr/local/lib/python2.7/dist-packages/pkg_resources/__init__.py", line 2230, in load
returnself.resolve()
File "/usr/local/lib/python2.7/dist-packages/pkg_resources/__init__.py", line 2236, in resolve
module = __import__(self.module_name, fromlist=['__name__'], level=0)
File "/usr/local/lib/python2.7/dist-packages/pip/__init__.py", line 16, in<module>
from pip.vcs import git, mercurial, subversion, bazaar # noqa
File "/usr/local/lib/python2.7/dist-packages/pip/vcs/mercurial.py", line 9, in<module>
from pip.download import path_to_url
File "/usr/local/lib/python2.7/dist-packages/pip/download.py", line 39, in<module>
from pip._vendor import requests, six
File "/usr/local/lib/python2.7/dist-packages/pip/_vendor/requests/__init__.py", line 53, in<module>
from .packages.urllib3.contrib import pyopenssl
File "/usr/local/lib/python2.7/dist-packages/pip/_vendor/requests/packages/urllib3/contrib/pyopenssl.py", line 49, in<module>
from ndg.httpsclient.ssl_peer_verification import SUBJ_ALT_NAME_SUPPORT
File "/usr/local/lib/python2.7/dist-packages/ndg/httpsclient/ssl_peer_verification.py", line 14, in<module>
from ndg.httpsclient.subj_alt_name import SubjectAltName
File "/usr/local/lib/python2.7/dist-packages/ndg/httpsclient/subj_alt_name.py", line 102, in<module>
class AnotherName(univ.Sequence):
File "/usr/local/lib/python2.7/dist-packages/ndg/httpsclient/subj_alt_name.py", line 105, in AnotherName
namedtype.NamedType('value', univ.Any().subtype(
AttributeError: 'module' object has no attribute 'Any'
Current work around: unbreak pip, upgrade pyasn1, then continue. Inside vagrant ssh execute:
Following the Vagrant setup in the Readme.md, setup.sh fails with the following error:
Current work around: unbreak pip, upgrade pyasn1, then continue. Inside
vagrant ssh
execute:sudo rm -rf /usr/local/lib/python2.7/dist-packages/ndg* sudo pip install --upgrade pyasn1 sudo /vagrant/setup.sh
Setup.sh will reinstall ndg-httpsclient. Though I'm not sure if this method breaks anything else.
The text was updated successfully, but these errors were encountered: