How to use PICRUSt2 on docker image?

Hello, thank you for your kind reply!

When I run conda install on Mac with M1 chip, I experienced the same error discussed in picrust2 qiime2-2019.10 install error. Then I tried manual installation from source Installation.

docker run --platform linux/amd64 --rm -it --name my-custom-container quay.io/qiime2/core:2021.11 /bin/bash
wget https://github.com/picrust/picrust2/archive/v2.5.1.tar.gz
tar xvzf v2.5.1.tar.gz
cd picrust2-2.5.1/

conda env create -f picrust2-env.yaml
conda activate picrust2
pip install --editable .

pytest

Then, I installed q2-picrust2:

wget https://github.com/gavinmdouglas/q2-picrust2/archive/2021.11_0.tar.gz
tar xvzf 2021.11_0.tar.gz
cd picrust2-2.5.1/

pip install -e . 

qiime dev refresh-cache

Both installations seem successfully finished, but I can’t find the picrust2 plugin in qiime2.

qiime picrust2 --help
Error: QIIME 2 has no plugin/command named 'picrust2'.

I’d appreciate any advice on how to proceed from here.
Thank you again for your time,
Mami