From 6dd949c0d16fe564b19b15255a0e4dd7c4d01e69 Mon Sep 17 00:00:00 2001 From: Ishank Juneja Date: Sat, 9 Apr 2022 11:16:26 -0400 Subject: [PATCH 1/2] Update README.md Old version of command gives the error: The unauthenticated git protocol on port 9418 is no longer supported. Please see https://github.blog/2021-09-01-improving-git-protocol-security-github/ for more information. This is solved by replacing with https --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a5451b3..d015181 100644 --- a/README.md +++ b/README.md @@ -20,5 +20,5 @@ If you need to install pycocotools for python 3, try the following: ``` sudo apt-get install python3-dev pip install cython -pip install git+git://github.com/waspinator/coco.git@2.1.0 +pip install git+https://github.com/waspinator/coco.git@2.1.0 ``` From 6a7e5815791e4e1689577c53486bda939e14b234 Mon Sep 17 00:00:00 2001 From: Ishank Juneja Date: Sat, 9 Apr 2022 11:21:34 -0400 Subject: [PATCH 2/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d015181..116abc0 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ Read more here https://patrickwasp.com/create-your-own-coco-style-dataset/ # Install -`pip install git+git://github.com/waspinator/pycococreator.git@0.2.0` +`pip install git+https://github.com/waspinator/pycococreator.git@0.2.0` If you need to install pycocotools for python 3, try the following: