Skip to content
This repository has been archived by the owner on Oct 31, 2023. It is now read-only.

Commit

Permalink
Merge pull request #17 from killthekitten/patch-2
Browse files Browse the repository at this point in the history
Access repos via https in INSTALL.md
  • Loading branch information
soumith authored Oct 25, 2018
2 parents 3b726c6 + c9106ec commit 57f2645
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 57f2645

Please sign in to comment.