conda创建python虚拟环境,安装pocketsphinx

目前的环境已经换过conda的清华源,win10 .因pocketsphinx目前不支持python3.7,故conda创建python虚拟环境,安装pocketsphinx
1.查看虚拟环境列表
conda env list
2.创建python3.6的虚拟环境,
conda create -n my_env_name python=3.6

  1. 进入虚拟环境
    activate my_env_name
    4.安装swig
    conda install -c anaconda swig
    5.升级pip
    pip install --upgrade pip setuptools wheel -i https://pypi.tuna.tsinghua.edu.cn/simple
    6.安装pocketsphinx
    pip install --upgrade pocketsphinx -i https://pypi.tuna.tsinghua.edu.cn/simple
    需要后续使用spyder,需单独在虚拟环境安装,才能匹配

你可能感兴趣的:(conda创建python虚拟环境,安装pocketsphinx)