MFA MACOS 安装流程

  1. 下载 miniconda安装文件:
复制代码
https://repo.anaconda.com/miniconda/Miniconda3-latest-MacOSX-x86_64.sh 
  1. 安装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.
  1. 配置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. <==
  1. 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.

  2. 安装MFA

conda create -n aligner -c conda-forge montreal-forced-aligner

bash 复制代码
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/aligner

  added / updated specs:
    - montreal-forced-aligner


The 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

bash 复制代码
software % conda activate aligner 
(aligner)  software % 

7.安装 SpeechBrain

在上面的aligner环境下执行以下命令

conda install pytorch torchvision torchaudio cpuonly -c pytorch

conda install -c conda-forge speechbrain

bash 复制代码
(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: failed

PackagesNotFoundError: The following packages are not available from current channels:

  - speechbrain

Current channels:

  - https://conda.anaconda.org/conda-forge
  - defaults

To search for alternate channels that may provide the conda package you're
looking for, navigate to

    https://anaconda.org

and use the search bar at the top of the page.
  1. 安装mfa

conda update -c conda-forge montreal-forced-aligner

bash 复制代码
(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

相关推荐
weixin_462446233 分钟前
Python Flask静态文件服务器:支持自动JSON扩展名补全的智能文件服务
服务器·python·flask
墨香幽梦客3 分钟前
系统高可用(HA)方案复盘:从主备切换到负载均衡的实现
运维·负载均衡
gaize12137 分钟前
服务器搭建网站:深度解析技术维护与美化标题的实践之道
运维·服务器
oMcLin16 分钟前
如何在 CentOS Stream 9 上配置并优化 PostgreSQL 15,支持高并发的数据插入与快速查询?
linux·postgresql·centos
柏木乃一17 分钟前
进程(11)进程替换函数详解
linux·服务器·c++·操作系统·exec
say_fall18 分钟前
微机原理:微型计算机基础
服务器·网络·单片机·微机原理
cly122 分钟前
Ansible自动化(十):配置文件管理模块(lineinfile / blockinfile)
运维·自动化·ansible
ben9518chen22 分钟前
Linux文件系统基础
linux·服务器·php
乐迪信息24 分钟前
乐迪信息:防止船舶误入禁航区:AI偏航检测精准干预
大数据·运维·人工智能·物联网·安全
鋆雨无欢丶25 分钟前
docker证书认证问题
运维·docker·容器