MFA MACOS 安装流程
1. 下载 miniconda安装文件:
https://repo.anaconda.com/miniconda/Miniconda3-latest-MacOSX-x86_64.sh
2. 安装Miniconda3
miniconda % ./Miniconda3-latest-MacOSX-x86_64.sh -b -p ../miniconda
software % ./miniconda-sh/Miniconda3-latest-MacOSX-x86_64.sh -b -p miniconda
PREFIX=/Users/rsun/software/miniconda
Unpacking bootstrapper...
Unpacking payload...Installing base environment...Preparing transaction: ...working... done
Executing transaction: ...working...
done
installation finished.
3. 配置Miniconda
In order to initialize after the installation process is done, first run source <path to conda>/bin/activate and then run conda init zsh.
software % source ./miniconda/bin/activate
software % conda init zsh
no change /Users/rsun/software/miniconda/condabin/conda
no change /Users/rsun/software/miniconda/bin/conda
no change /Users/rsun/software/miniconda/bin/conda-env
no change /Users/rsun/software/miniconda/bin/activate
no change /Users/rsun/software/miniconda/bin/deactivate
no change /Users/rsun/software/miniconda/etc/profile.d/conda.sh
no change /Users/rsun/software/miniconda/etc/fish/conf.d/conda.fish
no change /Users/rsun/software/miniconda/shell/condabin/Conda.psm1
modified /Users/rsun/software/miniconda/shell/condabin/conda-hook.ps1
no change /Users/rsun/software/miniconda/lib/python3.13/site-packages/xontrib/conda.xsh
no change /Users/rsun/software/miniconda/etc/profile.d/conda.csh
modified /Users/rsun/.zshrc==> For changes to take effect, close and re-open your current shell. <==
4. conda 更新
software % conda update conda
Do you accept the Terms of Service (ToS) for
https://repo.anaconda.com/pkgs/main? [(a)ccept/(r)eject/(v)iew]: a
Do you accept the Terms of Service (ToS) for https://repo.anaconda.com/pkgs/r?
[(a)ccept/(r)eject/(v)iew]: a
2 channel Terms of Service accepted
Retrieving notices: done
Channels:- defaults
Platform: osx-64
Collecting package metadata (repodata.json): done
Solving environment: done# All requested packages already installed.
5. 安装MFA
conda create -n aligner -c conda-forge montreal-forced-aligner
software % conda create -n aligner -c conda-forge montreal-forced-aligner
2 channel Terms of Service accepted
Channels:- conda-forge- defaults
Platform: osx-64
Collecting package metadata (repodata.json): done
Solving environment: done## Package Plan ##environment location: /Users/rsun/software/miniconda/envs/aligneradded / updated specs:- montreal-forced-alignerThe following packages will be downloaded:
......
Downloading and Extracting Packages:Preparing transaction: done
Verifying transaction: done
Executing transaction: -
\
\
done
#
# To activate this environment, use
#
# $ conda activate aligner
#
# To deactivate an active environment, use
#
# $ conda deactivate
6.激活新的新环境:conda activate aligner
software % conda activate aligner
(aligner) software %
7.安装 SpeechBrain
在上面的aligner环境下执行以下命令
conda install pytorch torchvision torchaudio cpuonly -c pytorch
conda install -c conda-forge speechbrain
(aligner) software % conda install -c conda-forge speechbrain
2 channel Terms of Service accepted
Channels:- conda-forge- defaults
Platform: osx-64
Collecting package metadata (repodata.json): done
Solving environment: failedPackagesNotFoundError: The following packages are not available from current channels:- speechbrainCurrent channels:- https://conda.anaconda.org/conda-forge- defaultsTo search for alternate channels that may provide the conda package you're
looking for, navigate tohttps://anaconda.organd use the search bar at the top of the page.
8. 安装mfa
conda update -c conda-forge montreal-forced-aligner
(aligner) software % conda update -c conda-forge montreal-forced-aligner
2 channel Terms of Service accepted
Channels:- conda-forge- defaults
Platform: osx-64
Collecting package metadata (repodata.json): done
Solving environment: done# All requested packages already installed.
详见https://montreal-forced-aligner.readthedocs.io/en/latest/installation.html
