Remove creating media/ from instructions

After #365 the media directory is automatically created, so the instructions can be simplified.
This commit is contained in:
Devin Neal 2018-12-10 21:35:54 -08:00 committed by GitHub
parent 5e20b07880
commit 465951ab88
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -15,8 +15,6 @@ Manim runs on python 3.7. You can install the python requirements with
git clone https://github.com/3b1b/manim.git
cd manim
pip install -r requirements.txt
mkdir media
echo "media" > media_dir.txt
python3 extract_scene.py example_scenes.py SquareToCircle -pl
```
@ -25,8 +23,6 @@ After installing `virtualenv` and `virtualenvwrapper`
```sh
git clone https://github.com/3b1b/manim.git
mkvirtualenv -a manim -r requirements.txt manim
mkdir media
echo "media" > media_dir.txt
python3 extract_scene.py example_scenes.py SquareToCircle -pl
```
@ -43,10 +39,8 @@ The image does not contain a copy of the repo. This is intentional, as it allows
* Bind mount a local repo (recommended): `docker run -itv /absolute/path/to/your/local/manim/repo:/root/manim eulertour/manim` or
* Clone a remote repo: `docker run -it eulertour/manim`, then `git clone https://github.com/eulertour/manim.git`
4. Render an animation
```
```sh
cd manim
mkdir media
echo "media" > media_dir.txt
python3 extract_scene.py example_scenes.py SquareToCircle -l
```
Note that the image doesn't have any development tools installed and can't preview animations. Its purpose is building and testing only.