Bootstrap

三、python实现AI拟声--Pytorch与FFmoeg安装

1.pytorch下载配置

人工智能必备插件

同样下载速度极慢,使用清华开源镜像站下载,或者官方下载地址后面粘贴

-i https://mirrors.aliyun.com/pypi/simple

PyTorch 官方网站https://pytorch.org/1)创建一个单独的环境,用于运行pytorch

conda create -n pytorch python=3.7 pytorch为环境名字 3.7为python版本
conda dctivate pytorch(替换为自己设置的名字)

2)设置镜像地址

conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/

conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/

conda config --set show_channel_urls yes

conda config --add channels https://

;