-1

Issue with swagger_client:

import swagger_client as cris_client

I was trying to

pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git

and

pip install --upgrade git+git://github.com/Yelp/bravado@swaggerpy

I have got the following error:

ERROR: Command errored out with exit status 128: git clone -q git://github.com/Yelp/bravado /tmp/pip-req-build-olyapdl1 
Check the logs for full command output
desertnaut
  • 52,940
  • 19
  • 125
  • 157
JIsam
  • 69
  • 2
  • 7

1 Answers1

0

git:// protocol is no longer supported at GitHub. Use https:// or ssh://. You can configure replacement globally.

Try

pip install --upgrade git+https://github.com/Yelp/bravado@swaggerpy
phd
  • 69,888
  • 11
  • 97
  • 133