1

我是 python 的新手(和一般的编码),我正试图让 Manim 在我的 Mac 上运行。我一直在遵循http://bhowell4.com/manic-install-tutorial-for-mac/上的指示

我到了尝试通过运行来测试动画的地步:

python3 extract_scene.py example_scenes.py SquareToCircle -pl

这是我收到的错误消息:

>

/Users/rdownie/animations/manim/venv/lib/python3.7/site-packages/pydub/utils.py:165: RuntimeWarning: Couldn't find ffmpeg or avconv - defaulting to ffmpeg, but may not work
warn("Couldn't find ffmpeg or avconv - defaulting to ffmpeg, but may not work", RuntimeWarning)
Traceback (most recent call last):
File "extract_scene.py", line 163, in 
main()
TypeError: main() missing 1 required positional argument: 'config'

任何帮助深表感谢!

4

2 回答 2

0

这是

python3 -m manim example_scenes.py SquareToCircle -pl

或者

python3 manim.py example_scenes.py SquareToCircle -pl

如果您通过 pip ( pip install manimlib) 安装 manim,则:

manim example_scenes.py SquareToCircle -pl
于 2019-07-18T19:29:20.040 回答
0

你需要先安装ffmpeg

对于 MacOS,只需打开终端并运行

brew install ffmpeg

对于 Windows,请按照此链接安装 ffmpeg https://www.wikihow.com/Install-FFmpeg-on-Windows

于 2020-03-06T01:54:34.677 回答