From a2c68b15d596f2f407808fa67daca77d37e56638 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ignacio=20L=C3=B3pez-Francos?= Date: Fri, 7 Feb 2020 09:55:37 -0800 Subject: [PATCH] fix small typo in README.md (#21) Summary: the dot at the pip command was outside of the inline code formatting. I just moved the back tick after the dot. Pull Request resolved: https://github.com/facebookresearch/pytorch3d/pull/21 Differential Revision: D19791603 Pulled By: nikhilaravi fbshipit-source-id: 6b0bedd2a788aef0d9678f9c1c25354ada76a3f4 --- INSTALL.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/INSTALL.md b/INSTALL.md index 49131660..cd17c6fb 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -66,7 +66,7 @@ pip install 'git+https://github.com/facebookresearch/pytorch3d.git' git clone https://github.com/facebookresearch/pytorch3d.git cd pytorch3d && pip install -e . ``` -To rebuild after installing from a local clone run, `rm -rf build/ **/*.so` then `pip install -e` .. You often need to rebuild pytorch3d after reinstalling PyTorch. +To rebuild after installing from a local clone run, `rm -rf build/ **/*.so` then `pip install -e .`. You often need to rebuild pytorch3d after reinstalling PyTorch. **Install from local clone on macOS:** ```