mirror of
https://github.com/initialcommit-com/git-sim.git
synced 2026-04-27 11:35:58 +03:00
[GH-ISSUE #91] AttributeError: module 'manim' has no attribute 'ArrowTriangleFilledTip' #56
Labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/git-sim#56
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @Olimiya on GitHub (Jun 7, 2023).
Original GitHub issue: https://github.com/initialcommit-com/git-sim/issues/91
The steps are following the QuickStart:
The output is below, containing the version info.
And the system is win11.
Thanks.
@ldslds449 commented on GitHub (Jun 7, 2023):
You can downgrade
git-simto version 0.2.9 to fix this problem temporarily.@initialcommit-io commented on GitHub (Jun 8, 2023):
@Olimiya Oh it looks like you have an older version of Manim installed (0.16.0) that doesn't support one of the required Manim classes
ArrowTriangleFilledTip.Can you try upgrading to Manim 0.17.3? (which should be the default installed version with git-sim on a clean install), and let me know if that fixes it?
@Olimiya commented on GitHub (Jun 8, 2023):
yes, I try: pip install git-sim==0.2.9, now I can use it normally.
I use choco install manim, following the docs in Manim, and i get this version.
So it seems the default steps now,
choco install manim and pip install git-sim,
these steps will install incompatible version.
@initialcommit-io commented on GitHub (Jun 8, 2023):
@Olimiya I see. Instead of using git-sim version 0.2.9, can you try to use git-sim 0.3.1 and Manim 0.17.3? I think you can try something like:
pip install manim --upgradeAnd then check to make sure you have manim version 0.17.3 (and you also should be using latest git-sim 0.3.1, instead of downgrade to 0.2.9)
@Olimiya commented on GitHub (Jun 8, 2023):
I tried:
pip install manim --upgrade.After that, when
mainm --version, it showsManim Community v0.16.0.post0still.@ldslds449 commented on GitHub (Jun 8, 2023):
I think the problem is that your Python version is 3.7, not 3.8 or higher.
manim 0.17.3 requires Python version to be at least 3.8.
@Olimiya commented on GitHub (Jun 8, 2023):
oh yes. It is, so this is the reason. Thanks a lot.