conda install --file requirements.txt使用国内库
时间: 2024-01-30 11:03:28 浏览: 257
requirements.txt
如果你想使用国内的镜像源来加速conda的安装过程,可以使用以下命令:
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --set show_channel_urls yes
这将将清华大学镜像源添加为conda的默认通道,并显示镜像源的URL。然后,你可以继续使用上面提到的命令来安装requirements.txt文件中的依赖项,但此时conda会使用国内的镜像源进行下载和安装,从而提高安装速度。
阅读全文