Skip to main content

ManimPro: High-quality, portable, and user-friendly mathematical animation engine. Forked from Manim Community.

Project description



PyPI Latest Release Docker image MIT License Reddit Twitter Discord Code style: black Documentation Status Downloads CI

High-quality, portable, and user-friendly mathematical animation engine


ManimPro is a high-quality, portable, and user-friendly mathematical animation engine for explanatory math videos. It's used to create precise animations programmatically, as demonstrated in the videos of 3Blue1Brown.

[!NOTE] ManimPro is forked from the Manim Community Edition (ManimCE), which was originally forked from 3b1b/manim, a tool created and open-sourced by Grant Sanderson, creator of the 3Blue1Brown educational math videos. ManimPro focuses on enhanced portability, improved user experience, and professional-grade features for mathematical animation creation. If you would like to study how Grant makes his videos, head over to his repository (3b1b/manim).

Table of Contents:

Installation

[!CAUTION] These instructions are for ManimPro only. Trying to use these instructions to install other versions of Manim or instructions from other versions to install ManimPro will cause problems. Read this and decide which version you wish to install, then only follow the instructions for your desired version.

ManimPro requires a few dependencies that must be installed prior to using it. If you want to try it out first before installing it locally, you can do so in our online Jupyter environment.

For local installation, please visit the Documentation and follow the appropriate instructions for your operating system.

Usage

ManimPro is an extremely versatile package. The following is an example Scene you can construct:

from manimpro import *
from manimpro.utils.positioning import set_position


class SquareToCircle(Scene):
    def construct(self):
        circle = Circle()
        square = Square()
        square.flip(RIGHT)
        square.rotate(-3 * TAU / 8)
        circle.set_fill(PINK, opacity=0.5)

        # Use global positioning - works anywhere!
        set_position(square, ORIGIN)
        set_position(circle, ORIGIN)

        self.play(Create(square))
        self.play(Transform(square, circle))
        self.play(FadeOut(square))

In order to view the output of this scene, save the code in a file called example.py. Then, run the following in a terminal window:

manimpro -p -ql example.py SquareToCircle

You should see your native video player program pop up and play a simple scene in which a square is transformed into a circle. You may find some more simple examples within this GitHub repository. You can also visit the official gallery for more advanced examples.

ManimPro also ships with a %%manimpro IPython magic which allows to use it conveniently in JupyterLab (as well as classic Jupyter) notebooks. See the corresponding documentation for some guidance and try it out online.

Web Viewer

ManimPro includes a built-in web viewer for previewing your rendered animations directly in your browser:

manimpro preview

This launches a lightweight web server that automatically discovers and displays all your rendered videos with a clean, responsive interface. Perfect for reviewing your work and sharing animations with others!

🎯 Global Positioning System

ManimPro features a powerful global positioning system that allows you to position objects anywhere without needing scene context:

from manimpro import *
from manimpro.utils.positioning import set_position, get_position

# Works anywhere - no self needed!
dot = Dot()
set_position(dot, UP * 2)           # Vector positioning
set_position(dot, "UL")             # String constants (Upper Left)
set_position(dot, [1, 2, 0])        # Coordinate arrays

# Perfect for updaters and always_redraw
def update_dot(mob):
    set_position(mob, tracker.get_value() * RIGHT)  # Global function!

line = always_redraw(
    lambda: Line(get_position(dot1), get_position(dot2))  # Global functions!
)

Key Features:

  • 🌐 Global Usage: Call set_position(obj, target) anywhere without scene context
  • 🔄 Full Integration: Works seamlessly with ValueTracker, always_redraw, and updaters
  • 📍 Multiple Methods: Supports vectors, string constants, and relative positioning
  • 🔙 Backward Compatible: All existing code continues to work unchanged

See the Global Positioning Guide for complete documentation and examples.

Command line arguments

The general usage of ManimPro is as follows:

manimpro-illustration

The -p flag in the command above is for previewing, meaning the video file will automatically open when it is done rendering. The -ql flag is for a faster rendering at a lower quality.

Some other useful flags include:

  • -s to skip to the end and just show the final frame.
  • -n <number> to skip ahead to the n'th animation of a scene.
  • -f show the file in the file browser.

For a thorough list of command line arguments, visit the documentation.

Documentation

Documentation is in progress at ReadTheDocs.

Docker

The community also maintains a docker image (manimpro/manimpro), which can be found on DockerHub. Instructions on how to install and use it can be found in our documentation.

Help with ManimPro

If you need help installing or using ManimPro, feel free to reach out to our Discord Server or Reddit Community. If you would like to submit a bug report or feature request, please open an issue.

Contributing

Contributions to ManimPro are always welcome. In particular, there is a dire need for tests and documentation. For contribution guidelines, please see the documentation.

However, please note that ManimPro is currently undergoing active development. In general, contributions implementing new features are welcome but should be discussed first. The contribution guide may become outdated quickly; we highly recommend joining our Discord server to discuss any potential contributions and keep up to date with the latest developments.

Most developers on the project use uv for management. You'll want to have uv installed and available in your environment. Learn more about uv at its documentation and find out how to install manimpro with uv at the manimpro dev-installation guide in the manimpro documentation.

How to Cite ManimPro

We acknowledge the importance of good software to support research, and we note that research becomes more valuable when it is communicated effectively. To demonstrate the value of ManimPro, we ask that you cite ManimPro in your work. Currently, the best way to cite ManimPro is to go to our repository page (if you aren't already) and click the "cite this repository" button on the right sidebar. This will generate a citation in your preferred format, and will also integrate well with citation managers.

Code of Conduct

Our full code of conduct, and how we enforce it, can be read on our website.

License

The software is double-licensed under the MIT license, with copyright by 3blue1brown LLC (see LICENSE), and copyright by ManimPro Developers (see LICENSE.community).

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

manimpro-0.5.0.tar.gz (591.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

manimpro-0.5.0-py3-none-any.whl (699.7 kB view details)

Uploaded Python 3

File details

Details for the file manimpro-0.5.0.tar.gz.

File metadata

  • Download URL: manimpro-0.5.0.tar.gz
  • Upload date:
  • Size: 591.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.7

File hashes

Hashes for manimpro-0.5.0.tar.gz
Algorithm Hash digest
SHA256 5947e32ffd0f00ea57c6c0e9da4821b3433fff42c0752181cac2fd0283439046
MD5 6e9f301d4941fdf441d3084441d35892
BLAKE2b-256 23e26985802abe10f91a8f04bff3b4e5d4bdf06218e38de6c62151d43cca578f

See more details on using hashes here.

File details

Details for the file manimpro-0.5.0-py3-none-any.whl.

File metadata

  • Download URL: manimpro-0.5.0-py3-none-any.whl
  • Upload date:
  • Size: 699.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.7

File hashes

Hashes for manimpro-0.5.0-py3-none-any.whl
Algorithm Hash digest
SHA256 85e6da0b98fc9501a1e05b1fb10d8a971ead57d078d41bbb9b1a0151ea4589ba
MD5 da60d61dfbe25d4397cabb0a83f511d4
BLAKE2b-256 d7fbc3196d34fad6ff85a8395c3f9584f8122a3924b6cc1bde77094ef493bbbb

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page