python学习——conda install Python库时报PackagesNotFoundError:的错误的解决方案,很实用

技术标签: python基础  python

安装完成Anaconda之后,我们可以在Anaconda Prompt交互式窗口中通过“conda install 库名称”实现Python库的安装,但是有时候在运用该命令进行安装时会提示PackagesNotFoundError: The following packages are not available from current channels:的错误,现在以P...

anaconda 安装package提示PackagesNotFoundError

Linux下使用anaconda安装package时,有时候提示“PackagesNotFoundError: The following packages are not available from current channels”。 解决方案如下: 第一步:输入 anaconda search -t conda packages 第二步:输入anaconda

使用Anaconda Navigator新建专用虚拟环境报错 PackagesNotFoundError

根据吴老师课程使用Anaconda Navigator新建专用虚拟环境时遇到问题: 根据下面方式创建: 出现报错: PackagesNotFoundError: 创建之前进行了配置镜像下载渠道使用了清华镜像站。这个错误是说此包无法从当前渠道获得。 解决办法: Anaconda Prompt里输入:conda create -c conda-forge -n [环境名字] python

Ananconda包管理

PackagesNotFoundError: The following packages are not available from current channels:错误解决方式:①下载所要安装包,直接离线安装②添加包所在...学习Python基本语法准备着手重现一些好玩demo,但是在配置Anaconda安装包时遇到了些问题,现在总结一下遇到 解问题和决方法。 1.Anaconda环境下第三方包安装

Pycharm安装库(如jieba库)时装不了的解决办法

Pycharm+anaconda 环境,最近安装jieba,用了pip install jieba 报错如下: 然后用conda install jieba 还是报错: PackagesNotFoundError: The following packages are not available from current channels 1 解决办法: 打开Anaconda

一万个bug——python安装pyahocorasick遇到error: Microsoft Visual C++ 14.0 is required.**********

记录: 1.anaconda prompt选择对应虚拟环境使用命令conda install pyahocorasick 报错:PackagesNotFoundError: The following packages are not available from current channels: pyahocorasick 2.继续输入命令anaconda search -t conda


智能推荐

Python notes 0002: Install Python

Contents 1 What is Python? 1.1 Definition 2 Install Python 3 Install the code editor. 3.1 Install Pycharm 3.2 Install VScode 1 What is Python? 1.1 Definition Python is an interpreted, high-level and g...

python “pip install pipreqs”时报错

提示信息 ”WARNING: You are using pip version 21.1.3; however, version 21.2.2 is available. You should consider upgrading via the 'c:\users\jiajun.du\appdata\local\programs\python\python39\python.exe...

python pip install requests报错

闲来无事学python(爬虫),使用任何软件的第一步就是正确地安装它,安装requests模块报错 >pip install requests Collecting requests   Using cached https://files.pythonhosted.org/packages/7d/e3/20f3d364d6c8e5d2353c72a67778eb189176f08...

Python3.6.5_Install_Usermanual

Python3.6.5_Install_Usermanual Install package download link->Python Releases for Windows | Python.org After download, double click, next follow below picture arrow. After finished, please click cl...

Opencv-python_Install_Usermanual

Window+R, input cmd a) Input cd b) Input cd\ Input pip install opencv-contrib-python, it will download and install it automatically until finished. Upgrade by command” python -m pip install --up...

猜你喜欢

QT的温湿度显示系统

大家好,这里是石侃侃的博客,欢迎前来讨论 这篇文章介绍的是DHT11在2440上的基于Qt5.6的应用 基于单片机系统的温湿度监测系统构成框图如图2-1所示。 图2-1  系统构成框图 该系统采用单片机s3c2440作为了本设计的核心元件。利用LCD作为了显示器件,利用触摸屏作为用户界面输入设备,第一行显示当前实时的温度,湿度,第二行依次显示历史时刻最高的温度值,最高的湿度值。第三行是一...

截屏和储存

  MainActivity:...

解决JavaSoft\Prefs Could not open/create prefs root node Software\JavaSoft\Prefs at root 0x80000002

“Could not open/create prefs root node Software\JavaSoft\Prefs atroot 0x80000002. Windows RegCreateKeyEx(...) returned error code 5”, 虽然不影响tomcat的运行,程序也可以正常运行,但是既然报错肯定有隐患,于是决定解决这个问题。 此问题已纠...

Android Theme、colorPrimary、colorPrimaryDark、colorAccent详解

      参考:https://blog.csdn.net/lvxiangan/article/details/78931962...

2015年3月最佳的免费资源分享给设计师

  这里是2015年3月最佳的20个免费资源,这里列表中包含字体,Web 应用程序,设计资源,模板素材等等,对设计师们非常有用,不管是初学者到顶尖的专家。如果我们错过了一些东西,也欢迎大家推荐给我。 您可能感兴趣的相关文章 网站开发中很有用的 jQuery 效果【附源码】 分享35个让人惊讶的 CSS3 动画效果演示 十分惊艳的8个 HTML5 & JavaScript 特效 Web 开发...

问答精选

TensorFlow Object Detection API poor results

I have trained TensorFlow Object Detection API on my own PascalVOC dataset with 7 classes. In each class there are from 100 to 200 images. I was using ssd_mobilenet_v1_pets.config standard configurati...

How can I indent a line by several steps in VIM?

How can I indent a line by several steps in VIM? To understand my question, see the example blow: >> indents the current line by one step. 2>> indents two lines by one step Or V2> inden...

Method references in Java 8: is overloading supported?

Is there any way to refer to a group of methods in Java 8, which varies their signature the overloading way? More precisely, I'd like this code to work: I cannot afford to add public static void foo (...

Tkinter: How do I build an application for several different screen resolutions

So I'm working on an application in Python with Tkinter as the GUI framework. The first picture is a screenshot from my coworkers computer, the second is a screenshot from my computer. How can I make ...

Problems to initialize Analytics in ANDROID app

I'm facing problems to use Analytics in my Android App. I'm using the default class generated by Android Studio I don't know how to initialize it, if I do it in the MainActivity in onCreate() each tim...

相关问题

相关文章

热门文章

推荐文章

相关标签

推荐问答