Manim Community v0.18.0
(process:4456): GLib-GIO-WARNING **: 17:58:55.059: Unexpectedly, UWP app `Microsoft.OutlookForWindows_1.2024.111.100_x64__8wekyb3d8bbwe' (AUMId `Microsoft.OutlookForWindows_8wekyb3d8bbwe!Microsoft.OutlookforWindows') supports 1 extensions but has no verbs
(process:4456): GLib-GIO-WARNING **: 17:58:55.188: Unexpectedly, UWP app `Microsoft.ScreenSketch_11.2405.32.0_x64__8wekyb3d8bbwe' (AUMId `Microsoft.ScreenSketch_8wekyb3d8bbwe!App') supports 29 extensions but has no verbs
I tried to run manim by referring to this document, but a problem occurred.
https://wikidocs.net/75429
from manim import *
class SquareToCircle(Scene):
def construct(self):
square = Square()
self.play(Create(square))
self.play(Transform(square, Circle()))
self.play(FadeOut(square))
I ran this code and it didn’t work.
New contributor
노랭새 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.