Python各种问题报错
报错问题
pxyp123
这个作者很懒,什么都没留下…
展开
-
ImportError: cannot import name ‘available_if‘ from ‘sklearn.utils.metaestimators‘ (D:\Anaconda\lib\
问题描述一开始是报错没有安装yellowbrick库,然后加入pip语句(用的是jupyter notebook)之后,又报下面这个错误ImportError: cannot import name 'available_if' from 'sklearn.utils.metaestimators' (D:\Anaconda\lib\site-packages\sklearn\utils\metaestimators.py)我的代码!pip install yellowbrickfr..原创 2022-05-10 15:51:17 · 4195 阅读 · 5 评论 -
推荐系统:ImportError: cannot import name ‘evaluate‘ from ‘surprise
根据官方文档,evaluate()方法在1.0.5版中已弃用(功能上已由model_selection.cross_validate()取代),并在1.1.0版中删除分析:需要改两个地方第一个是导入库:将from surprise import evaluate 换成from surprise.model_selection import cross_validate即可。第二个是应用:data.split(n_folds=5)和evaluate(svd, data, measures=原创 2022-04-29 15:43:48 · 1497 阅读 · 0 评论 -
安装surprise库 ERROR: Command errored out with exit status 1:
问题描述安装surprise库的时候报错:ERROR: Command errored out with exit status 1根据提示,需要安装Microsoft Visual C++ 14.0问题解决安装方法:链接:https://pan.baidu.com/s/17v8saDcmoY9WEOoXQ8xnXw提取码:rjs4--来自百度网盘超级会员V6的分享下载之后,双击solved_packageMissInInstalling_mu_visual_...原创 2022-04-29 15:15:59 · 768 阅读 · 0 评论 -
LookupError: Resource wordnet not found. Please use the NLTK Downloader to obtain the resource:
问题描述我的代码import reimport nltk import nltk as nlpnltk.download("stopwords") from nltk.corpus import stopwordsSong_Name = [ word for word in spotify_song_data.song_name if not word in set(stopwords.words("english"))]lemma = nlp.WordNetLemmati..原创 2022-04-28 19:25:04 · 2635 阅读 · 0 评论 -
ModuleNotFoundError: No module named ‘sklearn.grid_search‘
问题描述ModuleNotFoundError: No module named 'sklearn.grid_search'问题解决原创 2022-04-27 14:44:08 · 1273 阅读 · 0 评论 -
ModuleNotFoundError: No module named ‘sklearn.cross_validation‘
目录问题描述问题原理问题解决问题描述ModuleNotFoundError: No module named 'sklearn.cross_validation'我的代码# Split data into training and testing setsfrom sklearn.metrics import accuracy_score, fbeta_score, roc_curve, auc, roc_auc_scorefrom sklearn.cross_vali原创 2022-04-27 10:14:35 · 2722 阅读 · 0 评论 -
:762: ConvergenceWarning: lbfgs failed to converge (status=1): STOP: TOTAL NO. of ITERATIONS REACHED
问题描述:D:\PyCharm\machine_learning_py_codes\venv\lib\site-packages\sklearn\linear_model_logistic.py:762: ConvergenceWarning: lbfgs failed to converge (status=1): STOP: TOTAL NO. of ITERATIONS REACHEDIncrease the number of iterations (max_iter) or scale t原创 2022-04-26 20:53:11 · 2939 阅读 · 0 评论 -
OSError: cannot open resource
顾名思义,这是系统操作方面的问题。显然你要打开的某个文件无法正常打开。问题:这是我的代码,从格式上面来说,没有任何的问题。# -*- coding: utf-8 -*-from wordcloud import WordCloudimport matplotlib.pyplot as plt# 打开文本file = '../xyj.txt'text = open(file,encoding='utf-8').read()# 生成对象wc = WordCloud(font_p原创 2022-04-15 17:02:53 · 986 阅读 · 0 评论 -
UnicodeDecodeError: ‘gbk‘ codec can‘t decode byte 0x80 in position 2: illegal multibyte sequence
之前写过一个0xad的错误解决,这次是0x80的错误解决。问题:最近初步学习了wordcloud库,这是一个关于词云的项目。代码很简单:from wordcloud import WordCloudimport matplotlib.pyplot as plt# 打开文本file = '../xyj.txt'text = open(file).read()# 生成对象wc = WordCloud(font_path='../Hiragino.ttf', width=800,原创 2022-04-15 16:46:47 · 1414 阅读 · 0 评论 -
HTTP代码返回418<Response [418]>
爬虫入门程序: 简单查看网页的内容。问题描述运行结果是没有问题的!但是不会出现结果!import requestsimport bs4headers = { "User-Agent": "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0"}res = requests.get("ht原创 2022-04-01 16:09:19 · 5070 阅读 · 2 评论 -
python tests in xxx问题
问题描述pycharm运行程序时,不是 run xxx 的格式。而是 python tests in xxx 的格式。以下是正常情况:以下是不正常情况:原因你的程序里面出现了test函数 ,在python中你就自动进入了pytest的模式解决办法1.将你的test函数把名字改掉。2.进入到File->Settings->Tools->Python integrated Tools页面找到Testing下的Default test r.原创 2022-03-22 15:22:53 · 2875 阅读 · 1 评论 -
ERROR: Could not find a version that satisfies the requirement tkinter (from versions: none)
ERROR: Could not find a version that satisfies the requirement tkinter (from versions: none)ERROR: No matching distribution found for tkinter想按照一个库,但是失败了!这是下载速度太慢了,加个镜像就好了!xxx就是你要安装的库!pip install xxx -i http://pypi.douban.com/simple/具体可以参考:Py原创 2022-03-09 17:00:25 · 6605 阅读 · 0 评论 -
UnicodeDecodeError: ‘gbk‘ codec can‘t decode byte 0xad in position 2: illegal multibyte sequence
问题描述:使用pycharm运行如下程序时:file = open('a.txt','r')print(file.readlines())file.close()打开文件报错,显示:UnicodeDecodeError: 'gbk' codec can't decode byte 0xad in position 2: illegal multibyte sequence解决办法:将你要操作的文件,即a.txt,打开,然后另存为ANSI之后再运行程序,就可以得到正.原创 2022-03-05 18:58:33 · 846 阅读 · 0 评论 -
IndentationError: unindent does not match any outer indentation level
错误,搜索了一下相关资料,遇到这个错误,是因为新的Python语法中是不支持的代码对齐中,混用TAB和空格的。因为python是以一行作为一条语句来运行,不是像C语言一样以分号结束一条语句,所以每条代码之间的空格需要有严格的要求。解决方法:全体Tab一下。使得每个函数对应前面的空格是一致的。比如,使用两个for循环打印九九乘法表,正常应该是这样:for i in range(1,10): for j in range(1,i+1): print(i,'*',j ,'='原创 2022-03-04 10:32:44 · 1681 阅读 · 0 评论 -
Error #15: Initializing libiomp5md.dll, but found libiomp5md.dll already initialized.
这是运行python的时候想要可视化图形的时候出现的报错。首先检查一下你的matplotlib库是否安装完整;其次,如果还是有问题,可以试试添加如下代码:import osos.environ['KMP_DUPLICATE_LIB_OK'] = 'TRUE'如果是图片无法显示或者代码正常运行但是图片无法查看,可能是因为代码正常运行了,但是你没有让图片暂停显示出来,那么可以让图片暂停一下。plt.waitforbuttonpress()plt.show()...原创 2022-03-04 10:27:12 · 1463 阅读 · 0 评论 -
CondaHTTPError: HTTP 000 CONNECTION FAILED for url <https://repo.anaconda.co
下载路径有问题。找到.condarc文件打开这个文件,打开方式选择为txt全部替换为以下内容。channels: - http://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/ - http://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/ - http://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/msys2/原创 2022-03-04 10:21:41 · 3130 阅读 · 0 评论 -
ERROR: Could not install packages due to an OSError: HTTPSConnectionPool(host=‘files.pythonhosted.or
是因为pip下载速度太慢了。解决方法:换个镜像下载;或者是连手机热点pip install xxx -i https://pypi.douban.com/simple/xxx为需要pip的包。这个示例方法一般是临时使用的,每次记得加-ihttps://pypi.doubanio.com/simple/即可。...原创 2022-03-04 10:18:58 · 5029 阅读 · 1 评论