VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > Python基础教程 >
  • Python Conda安装包报错:PackagesNotFoundError两种解决方法

这篇文章主要给大家介绍了关于Python Conda安装包报错:PackagesNotFoundError的两种解决方法,这通常意味着安装程序正在寻找的环境包没有在 conda 的默认通道中找到,文中将解决的办法介绍的非常详细,需要的朋友可以参考下

Conda在下载安装包时报错:
PackagesNotFoundError: The following packages are not available from current channels:

  • XXXXXX(包名)

有如下两种解决方法:

方法一:将conda-forge添加到搜索路径上
在命令行运行下方指令,然后重新安装。

conda config --append channels conda-forge

conda install 需要安装的包名

方法二:在官网搜索相关包的安装指令并运行
点击命令行提示的连接,即官网: https://anaconda.org ,在页面搜索需要的包,复制下方任意一条指令在命令行运行即可。

PackagesNotFoundError: The following packages are not available from current channels:
 
  - beautifulsoup
 
Current channels:
 
  - https://conda.anaconda.org/conda-forge
  - https://conda.anaconda.org/bioconda
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/bioconda
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/pytorch
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/pro
  - 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.

进入主页搜索:

复制官网提供的命令:

在命令行运行命令:

总结
到此这篇关于Python Conda安装包报错:PackagesNotFoundError两种解决方法的文章就介绍到这了,更多相关Conda安装包报错PackagesNotFoundErro内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持vb.net教程C#教程python教程SQL教程access 2010教程https://www.xin3721.com/eschool/vbnetxin3721/

原文链接:https://blog.csdn.net/sun80760/article/details/136436164

相关教程