From 671151239c818aa375a49ed36413959f60b0fcfc Mon Sep 17 00:00:00 2001 From: Nathan Petrangelo Date: Tue, 3 Apr 2018 14:01:18 -0400 Subject: [PATCH 1/2] Updated imports --- primes.py | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) diff --git a/primes.py b/primes.py index aab741e7..126a7b1b 100644 --- a/primes.py +++ b/primes.py @@ -1,17 +1,4 @@ -from helpers import * -from mobject import Mobject -from mobject.vectorized_mobject import * -from animation.animation import Animation -from animation.transform import * -from animation.simple_animations import * -from topics.geometry import * -from scene import Scene -from camera import * -from topics.number_line import * -from topics.three_dimensions import * -from topics.light import * -from topics.characters import * -from topics.numerals import * +from big_ol_pile_of_manim_imports import * def is_prime(n): From b7259565cd4a50f432e7a0a3482787d6df1156eb Mon Sep 17 00:00:00 2001 From: bhbr Date: Wed, 4 Apr 2018 22:36:11 +0200 Subject: [PATCH 2/2] added aggdraw-1.3 caveat to README --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 5fedcbc1..4189d5df 100644 --- a/README.md +++ b/README.md @@ -31,6 +31,11 @@ dependencies. This doesn't install freetype, but I don't think it's required for this project +The latest version of aggdraw (1.3 as of 2018) does not work with manim. Uninstall it beforehand if necessary: +```sh +pip uninstall aggdraw +``` + ## How to Use Try running the following: ```sh