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
This commit is contained in:
Ignacio López-Francos 2020-02-07 09:55:37 -08:00 committed by Facebook Github Bot
parent b778668132
commit a2c68b15d5

View File

@ -66,7 +66,7 @@ pip install 'git+https://github.com/facebookresearch/pytorch3d.git'
git clone https://github.com/facebookresearch/pytorch3d.git git clone https://github.com/facebookresearch/pytorch3d.git
cd pytorch3d && pip install -e . 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:** **Install from local clone on macOS:**
``` ```