manim无法绘制正方形

问题遇到的现象和发生背景

刚安装好manim,全程按照https://docs.manim.org.cn/安装,然后试了一下官方文档的入门教程的代码,结果一试就出问题了

问题相关代码
from manimlib import *

class SquareToCircle(Scene):
    def construct(self):
        square= Square()
        square.set_fill(RED)
        square.rotate(PI / 4)
        self.add(square)
运行结果

运行结果就是那个方形一直不显示,但是我画圆形的时候是没有问题的,也是add(cirle)
全程的提示信息:

[18:11:00] INFO     Using the default configuration file, which you can modify in `c:\users\cbice\manim\manimlib\default_config.yml`             config.py:316           
INFO     If you want to create a local configuration file, you can create a file named `custom_config.yml`, or run `manimgl --config` config.py:317           
WARNING  You may be using Windows platform and have not specified the path of `temporary_storage`, which may cause OSError. So it is  config.py:283                    recommended to specify the `temporary_storage` in the config file (.yml)
INFO     Tips: You are now in the interactive mode. Now you can use the keyboard and the mouse to interact with the scene. Just press  scene.py:141                    `command + q` or `esc` if you want to quit.

(process:18884): GLib-GIO-WARNING **: 18:11:01.083: Unexpectedly, UWP app `DellInc.DellSupportAssistforPCs_3.10.7.0_x64__htrsf667h5kn2' (AUMId `DellInc.DellSupportAssistforPCs_htrsf667h5kn2!App') supports 1 extensions but has no verbs

(process:20448): GLib-GIO-WARNING **: 18:11:02.867: Unexpectedly, UWP app `DellInc.DellSupportAssistforPCs_3.10.7.0_x64__htrsf667h5kn2' (AUMId `DellInc.DellSupportAssistforPCs_htrsf667h5kn2!App') supports 1 extensions but has no verbs

我的写法和文档里的一模一样,但是就是运行不了。求解答T-T

Python版本是多少

不知道你的代码具体是什么

我这边操作了下:

from manimlib import *

class SquareToCircle(Scene):
    def construct(self):

        circle = Circle()
        circle.set_fill(BLUE, opacity=0.5)
        circle.set_stroke(BLUE_E, width=4)
        square = Square()
        square.set_fill(RED)
        square.rotate(PI / 4)
        self.add(square)
        self.play(ShowCreation(square))
        self.wait()
        self.play(ReplacementTransform(square, square))
        self.wait()

正常的输出了一个旋转45度的正方形
你看下你是否忘记修改这行代码为

self.play(ReplacementTransform(square, square))

demo里面是

self.play(ReplacementTransform(square, circle))
你如果画正方形的话自己把这个换一下。
上面是我测试的代码

你可以试下是否正常。

---
如有问题及时沟通

版本是最新的0.14.2 ,应该没有问题
如果大家都找不到问题的话,可否给我推荐一个讨论manim的社区或者群聊,因为刚上手实在找不到资源

---------------------------------------------5.18更新-------------------------------------------------
我尝试了英文社区文档https://docs.manim.community/en/stable/installation/windows.htmlChocolatey安装 ,很快安装好了,没出bug。虽然不知道之前错在哪但是现在能用就用吧。