From 829d72b0bf981a4044cdc8a47413cee26e46c949 Mon Sep 17 00:00:00 2001 From: Nikolay Shebanov Date: Thu, 25 Oct 2018 22:12:22 +0300 Subject: [PATCH] Access repos via https in INSTALL.md It is simpler and requires less effort (i.e. no auth) compared to SSH --- INSTALL.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/INSTALL.md b/INSTALL.md index 350e06142..a7b00d71c 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -31,19 +31,19 @@ conda install pytorch-nightly -c pytorch # install torchvision cd ~/github -git clone git@github.com:pytorch/vision.git +git clone https://github.com/pytorch/vision.git cd vision python setup.py install # install pycocotools cd ~/github -git clone git@github.com:cocodataset/cocoapi.git +git clone https://github.com/cocodataset/cocoapi.git cd cocoapi/PythonAPI python setup.py build_ext install # install PyTorch Detection cd ~/github -git clone git@github.com:facebookresearch/maskrcnn-benchmark.git +git clone https://github.com/facebookresearch/maskrcnn-benchmark.git cd maskrcnn-benchmark # the following will install the lib with # symbolic links, so that you can modify