mirror of
https://github.com/3b1b/manim.git
synced 2025-09-19 04:41:56 +00:00
Remove creating media/ from instructions
After #365 the media directory is automatically created, so the instructions can be simplified.
This commit is contained in:
parent
5e20b07880
commit
465951ab88
1 changed files with 1 additions and 7 deletions
|
@ -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.
|
||||
|
|
Loading…
Add table
Reference in a new issue