Registry / data / manim
library0.20.1pypypiunverified

Manim (Mathematical Animation Engine) is a Python library for creating explanatory math videos and animations. Current version is 0.20.1 with monthly releases. Requires Python 3.11+.

pip install manim
INSTALL
IMPORT
SIG · MANIM
M
manim
datapythonv0.20.1
Install
Import
Disk
Pass rate
0/ 10
Env Coverage0 / 10
glibc
3.93.13
musl
3.93.13
Install & Compatibility
Where this runs
tested against v? · pip install
Install × environment matrix
Each cell = how many times install + import succeeded across repeated harness runs. Partial = flaky.
glibc = Debian/Ubuntu slim · musl = Alpine Linux
musl
py 3.103.95 runs
build_error
glibc
py 3.103.95 runs
build_error
Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

Scene
from manim import Scene
manim.Scene
Importing directly from manim module is the standard way.
Square
from manim import Square

A minimal scene that shows a square.

from manim import Scene, Square, config config.frame_height = 8 config.frame_width = 8 class ExampleScene(Scene): def construct(self): square = Square() self.play(Create(square)) self.wait(1)
manim --version
Debug
Known issues
breakingManim version 0.19.0 changed the default renderer to OpenGL. If you upgrade from an older version, scenes may look different.
fix
Use the CairoRenderer if you need the old behavior: manim -r cairo your_scene.py
affects: >=0.19.0
deprecatedThe 'TexTemplate' class has been deprecated in favor of 'TexTemplateFromFile' in v0.18.0.
fix
Replace `TexTemplate` with `TexTemplateFromFile` or use the new `tex_template` parameter.
affects: >=0.18.0
gotchaWhen using LaTeX (Text, Tex, MathTex), you need a working LaTeX distribution installed (e.g., MiKTeX or TeX Live).
fix
Install a LaTeX distribution or use the `–-tex_template` flag to point to a custom template.
affects: all
Upgrade
Version history
0.20.1latest on PyPI · released Feb 27, 2026
Audit
Dependencies
ffmpegrequiredRequired for video rendering.
pycairorequiredRequired for vector graphics rendering.
Agent activity
13 hits · last 30 days
node
12
Resources
manim — pip install manim · libregistry