From 686937f29390e59290d387991feb6d1ce4b624c3 Mon Sep 17 00:00:00 2001 From: Peter Sobolewski <76622105+psobolewskiPhD@users.noreply.github.com> Date: Fri, 12 Jan 2024 10:23:21 -0500 Subject: [PATCH 1/2] warn re: ffmpeg arm64, add conda --- README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/README.md b/README.md index 5edf801..1248d81 100644 --- a/README.md +++ b/README.md @@ -38,6 +38,19 @@ This plugin remains under development and contributions are very welcome, please pip install napari-animation ``` +> [!WARNING] +> `napari-animation` uses `ffmpeg` to export animations. If you are using a macOS arm64 computer (e.g. M1, M2 processor) +> the PyPI package does not include the needed binary for your platform. You will need to install `ffmpeg` from using +> `conda` from the [conda-forge channel](https://conda-forge.org/docs/#what-is-conda-forge) (`conda install -c conda-forge ffmpeg`) +> or using [`homebrew`](https://brew.sh) (`brew install ffmpeg`). + +### Conda +`napari-animation` is also available for install using `conda` through the [conda-forge channel](https://conda-forge.org/docs/#what-is-conda-forge). + +```sh +conda install -c conda-forge napari-animation +``` + ### Local You can clone this repository and install locally with From 6137321b51346f56a15ebd384cd51307f8d6316f Mon Sep 17 00:00:00 2001 From: Peter Sobolewski <76622105+psobolewskiPhD@users.noreply.github.com> Date: Mon, 15 Jan 2024 09:14:57 -0500 Subject: [PATCH 2/2] review --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1248d81..eb9b8ec 100644 --- a/README.md +++ b/README.md @@ -39,8 +39,8 @@ pip install napari-animation ``` > [!WARNING] -> `napari-animation` uses `ffmpeg` to export animations. If you are using a macOS arm64 computer (e.g. M1, M2 processor) -> the PyPI package does not include the needed binary for your platform. You will need to install `ffmpeg` from using +> `napari-animation` uses `ffmpeg` to export animations. If you are using a macOS arm64 computer (Apple Silicon e.g. M1, M2 processor) +> the PyPI package does not include the needed binary for your platform. You will need to install `ffmpeg` using > `conda` from the [conda-forge channel](https://conda-forge.org/docs/#what-is-conda-forge) (`conda install -c conda-forge ffmpeg`) > or using [`homebrew`](https://brew.sh) (`brew install ffmpeg`).