Skip to content

Instantly share code, notes, and snippets.

@uwezi
Created March 18, 2024 09:43
Show Gist options
  • Save uwezi/d96246b1a6354134f08029623f2a21dd to your computer and use it in GitHub Desktop.
Save uwezi/d96246b1a6354134f08029623f2a21dd to your computer and use it in GitHub Desktop.
[find python executable] Find the python which is used by Manim. #manim #python #sys
from manim import *
import sys
class findpython(Scene):
def construct(self):
text = Text(sys.executable).scale_to_fit_width(14)
self.add(text)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment