mirror of
https://github.com/3b1b/manim.git
synced 2025-07-27 12:03:03 +08:00

Also moved some shortcuts into manimlib, to be able to use it without the big_ol_pile_of_manim_imports script. Updated the README to explain installation via pip
8 lines
139 B
Python
8 lines
139 B
Python
#!/usr/bin/env python
|
|
import manimlib
|
|
|
|
if __name__ == "__main__":
|
|
manimlib.main()
|
|
else:
|
|
manimlib.stream_starter.start_livestream()
|