Manim Example_scenes.py Won't Run
I am using this video to download and install manim on Windows 10. Whenever I try to run this code, it fails. python -m manim example_scenes.py SquareToCircle -pl cmd throws a big
Solution 1:
@Riddhiman 36, the thing you seem to be missing is the parsing library. You can install it using the command pip install argparse
or pip3 install argparse
(depending on your python version). To prevent any further issues, you can use the following command in your local Manim repo directory:-
python3 -m pip install -r requirements.txt
Solution 2:
It is likely an issue with the installation of numpy, scipy or pycairo; try (re)installing those.
Post a Comment for "Manim Example_scenes.py Won't Run"