エラーメッセージは以下の通り。
Plugin error from feature-classifier:
The scikit-learn version (0.23.1) used to generate this artifact does not match the current version of scikit-learn installed (0.24.1). Please retrain your classifier for your current deployment to prevent data-corruption errors.
Debug info has been saved to /tmp/qiime2-q2cli-err-ibvcqj6r.log
scikit-learnのバージョンが新しいのになってるので,古いのにせよとのこと。
#バージョン確認
pip list
#インストールされているscikit-learnをアンインストール
pip uninstall scikit-learn
#バージョンを指定してscikit-learnをインストールする
pip install scikit-learn==0.23.1