From 5d1f016fbddb8aa8c5fd942e8ae034cae6b5e0d6 Mon Sep 17 00:00:00 2001 From: Shubhanshu Mishra Date: Tue, 30 Apr 2019 14:40:22 -0500 Subject: [PATCH] Added anaconda environment and windows instructions --- README.md | 8 ++++++++ environment.yml | 17 +++++++++++++++++ 2 files changed, 25 insertions(+) create mode 100644 environment.yml diff --git a/README.md b/README.md index 5ac0ba17..012d9df4 100644 --- a/README.md +++ b/README.md @@ -49,6 +49,14 @@ manim.py example_scenes.py SquareToCircle -pl python3 manim.py example_scenes.py SquareToCircle -pl ``` + +## Anaconda Install + +* Install sox and latex as above. +* Create a conda environment using `conda env create -f environment.yml` +* **WINDOWS ONLY** Install `pyreadline` via `pip install pyreadline`. + + ### Using `virtualenv` and `virtualenvwrapper` After installing `virtualenv` and `virtualenvwrapper` ```sh diff --git a/environment.yml b/environment.yml new file mode 100644 index 00000000..85e1923f --- /dev/null +++ b/environment.yml @@ -0,0 +1,17 @@ +name: manim +channels: + - defaults + - conda-forge +dependencies: + - python=3.7 + - cairo + - ffmpeg + - colour==0.1.5 + - numpy==1.15.0 + - pillow==5.2.0 + - scipy==1.1.0 + - tqdm==4.24.0 + - opencv==3.4.2 + - pycairo==1.18.0 + - pydub==0.23.0 + - pyreadline \ No newline at end of file