Python安装包报错:PackagesNotFoundError: The following packages are not available from current channels


以安装SimpleITK包为例,安装时,显示下图错误

conda install SimpleITK

在这里插入图片描述

按以下操作完成包安装

anaconda search -t conda SimpleITK #查询包所存在的版本

在这里插入图片描述

根据需求选择自己要安装包的版本,输入以下命令查看安装渠道

anaconda show Alkibiades/simpleitk

在这里插入图片描述

进行安装

conda install --channel https://conda.anaconda.org/SimpleITK SimpleITK

相关