Unverified Commit 57f2645e authored by Soumith Chintala's avatar Soumith Chintala Committed by GitHub

Merge pull request #17 from killthekitten/patch-2

Access repos via https in INSTALL.md
parents 3b726c68 c9106ec4
...@@ -31,19 +31,19 @@ conda install pytorch-nightly -c pytorch ...@@ -31,19 +31,19 @@ conda install pytorch-nightly -c pytorch
# install torchvision # install torchvision
cd ~/github cd ~/github
git clone git@github.com:pytorch/vision.git git clone https://github.com/pytorch/vision.git
cd vision cd vision
python setup.py install python setup.py install
# install pycocotools # install pycocotools
cd ~/github cd ~/github
git clone git@github.com:cocodataset/cocoapi.git git clone https://github.com/cocodataset/cocoapi.git
cd cocoapi/PythonAPI cd cocoapi/PythonAPI
python setup.py build_ext install python setup.py build_ext install
# install PyTorch Detection # install PyTorch Detection
cd ~/github cd ~/github
git clone git@github.com:facebookresearch/maskrcnn-benchmark.git git clone https://github.com/facebookresearch/maskrcnn-benchmark.git
cd maskrcnn-benchmark cd maskrcnn-benchmark
# the following will install the lib with # the following will install the lib with
# symbolic links, so that you can modify # symbolic links, so that you can modify
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment