from manim_imports_ext import*
class VennDiagram(InterractiveScene):
def construct(self):
radius = 3.0
c1,c2 = circles = Circle(radius= radius).replicate(2)
c1.set_stroke(BLUE, 3)
c2.set_stroke(YELLOW, 3)
c1.move_to(radius*LEFT/2)
c2.move_to(radius*RIGHT/2)t
circles.to_edge(DOWN)
self.add(circles)
self.wait()
this is the code i want to run, but i got an ModuleNotFoundError: No module Named manim_imports_ext how do i download this module. I tried replacing manim_imports_ext with manim but then it shows InteractiveScene is not defined. Any help will be appreciated.
My animation code should run.