Replace pip with python3 -m pip

This commit is contained in:
Devin Neal 2018-12-29 17:53:48 -08:00 committed by GitHub
parent 11781a5baa
commit 9dafb85bde
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -6,7 +6,7 @@ Manim is an animation engine for explanatory math videos. It's used to create pr
## Installation ## Installation
Manim runs on python 3.7. You can install the python requirements with Manim runs on python 3.7. You can install the python requirements with
`pip install -r requirements.txt`. System requirements are `python3 -m pip install -r requirements.txt`. System requirements are
[cairo](https://www.cairographics.org), [latex](https://www.latex-project.org), [cairo](https://www.cairographics.org), [latex](https://www.latex-project.org),
[ffmpeg](https://www.ffmpeg.org), and [sox](http://sox.sourceforge.net). [ffmpeg](https://www.ffmpeg.org), and [sox](http://sox.sourceforge.net).
@ -14,7 +14,7 @@ Manim runs on python 3.7. You can install the python requirements with
```sh ```sh
git clone https://github.com/3b1b/manim.git git clone https://github.com/3b1b/manim.git
cd manim cd manim
pip install -r requirements.txt python3 -m pip install -r requirements.txt
python3 -m manim example_scenes.py SquareToCircle -pl python3 -m manim example_scenes.py SquareToCircle -pl
``` ```