kilacoda / chanim

Animation engine for explanatory chemistry videos
MIT License
145 stars 10 forks source link

temporary files are saved in the wrong location #2

Open alexander-schoch-github opened 4 years ago

alexander-schoch-github commented 4 years ago

All temporary TeX-files (.tex, .log, .aux) are now stored in the directory manim is run instead of media/Tex/. It was thus necessary to manually add the correct folders to manimlib/constants.py, e.g. like this:

MEDIA_DIR = "/home/alexander_schoch/Documents/Python/manim/media/"
VIDEO_DIR = "/home/alexander_schoch/Documents/Python/manim/video/"
VIDEO_OUTPUT_DIR = "/home/alexander_schoch/Documents/Python/manim/video/"
TEX_DIR = "/home/alexander_schoch/Documents/Python/manim/media/Tex/"