翻山越岭解决BUG
海人001
爱码仕
展开
-
2021-01-26 BUG
BUGAssertionError: In PaddlePaddle 2.x, we turn on dynamic graph mode by default, and 'data()' is only supported in static graph mode. So if you want to use this api, please call 'paddle.enable_static()' before this api to enter static graph mode.办法原创 2021-01-26 10:24:05 · 1273 阅读 · 0 评论 -
entities must span whole tokens. Wrong entity end.
背景使用Rasa进行模型训练,是警告不是BUG解决为分词模型添加自定义词典,或者升级Rasa版本原因分词可能会把需要的关键词给切开原创 2020-12-23 15:29:08 · 11194 阅读 · 0 评论 -
joblib.externals.loky.process_executor.BrokenProcessPool: A task has failed to un-serialize. Please
背景使用Rasa框架训练模型 系统:windows解决使用1个线程进行训练rasa train --num-threads 1为什么bug日志显示与多线程和多核相关,会报一些线程找不到,句柄找不到错误bug日志显示读取过C盘用户文件夹下的相关文件,可能与users权限,或者windows系统相关...原创 2020-12-23 15:25:09 · 12888 阅读 · 0 评论 -
choco install 错误
BUGERROR: The remote file either doesn't exist, is unauthorized, or is forbidden for url 'https://packages.meteor.com/bootstrap-link?arch=os.windows.x86_64'. Exception calling "GetResponse" with "0" argument(s): "The underlying connection was closed: Co原创 2020-12-15 14:43:51 · 12533 阅读 · 0 评论 -
self.status.split ,10, self.bytes_sent AttributeError: NoneType object has no attribute split
# SECURITY WARNING: don't run with debug turned on in production!DEBUG = True或 async : false,原创 2020-11-12 16:52:42 · 11755 阅读 · 0 评论 -
SQLite 3.8.3 or later is required (found 3.7.17).
方法一:给Django降级pip uninstall djangopip install django==2.1.7方法二:升级SQLite(1)获取安装包下载链接下载地址:https://www.sqlite.org/download.html(2)wget下载#链接最好重新获取,否则可能不是最新版本wget https://www.sqlite.org/2019/sqlite-autoconf-3300100.tar.gz(3)解压并安装[root@loc原创 2020-09-24 14:41:13 · 12088 阅读 · 0 评论 -
django.db.utils.OperationalError: no such table:
Django模型修改后请依次执行python manage.py checkpython manage.py makemigrations 模型名Django 把对模型(也就是数据库模式)的改动存储在迁移中,迁移就是磁盘中的文件。如果还报错,执行python manage.py sqlmigrate 模型名 0001这条指令会创建数据库并打印sql,找到报错中每找到的数据库对应的指令,把他复制下来,用数据库管理工具打开你的数据库,如果确实没找到模型对应的表,那么直接用复制的原创 2020-09-09 17:30:30 · 13967 阅读 · 0 评论 -
Djanjo BUG 无法加载静态文件
目录原因进一步原因解决1解决2其他办法原因settings.py被修改DEBUG = FalseALLOWED_HOSTS = ['*']进一步原因在关闭调试的情况下,Django将不再为您处理静态文件-生产Web服务器(Apache或其他服务器)应对此进行处理。解决1在不安全模式下运行devserver:manage.py runserver --insecure解决2settings.pySTATIC_URL = '/stati原创 2020-09-03 14:49:15 · 12046 阅读 · 0 评论 -
missing 1 required positional argument: ‘on_delete‘报错解决方案
多对一的关系,需要两个位置参数:模型相关的类和on_delete选项。(on_delete实际上并不需要,但是不提供它会给出弃用警告,这在Django 2.0中将是必需的,1.8及以前的版本不需要)要创建递归关系,即:与自身具有多对一关系的对象使用。models.ForeignKey('self', on_delete=models.CASCADE)PS:Django的版本更新比较频繁,每次版本迭代都有些改动,有问题直接查官方文档或者Stack Overflow,基本都可以解决。...原创 2020-09-02 13:16:38 · 12802 阅读 · 0 评论 -
rasa.exceptions.ModelNotFound: No NLU or Core data for unpacked model at:
执行遇到的报错:rasa train解决在项目目录下添加model文件夹原创 2020-06-04 13:26:08 · 10575 阅读 · 0 评论 -
Rasa启动失败 rasa init --no-prompt 执行失败
BUG位置tensorflow.python.pywrap_tensorflow_internal BUG代码DLL load failed:未找到指定模块原因调用tensorflow所致,去tensorflow官网查看原因https://www.tensorflow.org/install/errors点进去,基本上都是说版本的原因。查看tensorflow不同版本对应的配置https://github.com/fo40225/tensorflow-wind原创 2020-05-09 14:30:26 · 11349 阅读 · 4 评论 -
flask session操作问题
flasksession不是一个线程安全的对象,不适合直接容器方法进行操作,例如session['list'] = []session['list'].appened('AAA')在下次请求时,你可能会发现AAA并没有被存入session你需要更换写法session['list'] = []session['list'] = ['AAA'] + session['lis...原创 2020-04-15 21:19:19 · 10339 阅读 · 1 评论 -
("%s: %s\r\n" % (keyword, value)).encode('latin-1', 'strict'))
原因:Flask返回中文名文件的文件流对象报错误解决:中文经过urllib.parse的quote处理即可resp.headers['Content-Disposition'] = 'attachment;filename={0};filename*={0}'.format(quote(filename))...原创 2020-04-02 14:14:31 · 10878 阅读 · 0 评论 -
使用 SQLAlchemy遇到 No module named 'MySQLdb' BUG处理
原因:python3使用此类库连接mysql需要使用额外参数pymysql为操作方法解决:from flask_sqlalchemy import SQLAlchemyapp = Flask(__name__)class Config(object):SQLALCHEMY_DATABASE_URI="mysql+pymysql://root:pass@127.0.0.1...原创 2020-03-30 15:42:14 · 10501 阅读 · 0 评论 -
'gbk' codec can't encode characte
忽略GBK不能识别的字符print(str.encode('GBK', 'ignore').decode('GBK'))原创 2020-02-20 11:12:47 · 10473 阅读 · 0 评论 -
无法打开包括文件: “SplitSentence.h”: No such file or directory
使用setup.py安装PYLTP错误Unknown compiler version - please run the configure tests and report the resultspatch/include/boost/python/detail/caller.hpp(55): warning C4244: “return”: 从“Py_ssize_t”转换到“unsig...原创 2020-01-15 22:10:11 · 10987 阅读 · 0 评论 -
Error occurred during initialization of boot layer
Error occurred during initialization of boot layer.初始化引导层期间发生错误。原因是JDK9及以上版本中,引入了模块。所以要是在default package建立一个单独运行的类,就无法通过编译。在JDK8中就没有这样的问题。同时,如果依然想在default package中运行单独的类。删除module-info.java就可以了。...原创 2019-11-19 13:08:13 · 17318 阅读 · 5 评论 -
windows10下安装docker报错:error during connect
详细报错信息如下:C:\Users\zig>docker infoerror during connect: Get http://%2F%2F.%2Fpipe%2Fdocker_engine/v1.39/info: open //./pipe/docker_engine: The system cannot find the file specified. In the defau...原创 2019-10-29 11:10:55 · 11962 阅读 · 0 评论 -
TypeError: Object of type 'Decimal' is not JSON serializable
将mysql查询结果转换为json,如上报错解决方案,变更json加载方式,返回data即可class DecimalEncoder(json.JSONEncoder): def default(self, o): if isinstance(o, decimal.Decimal): return float(o) supe...原创 2019-10-28 13:42:24 · 11283 阅读 · 0 评论 -
未检测任何音频设备,关机假死
昨天拯救者没声音了,浪费了一晚的美妙时间,今早终于搞好了,是主板驱动问题。过程如下昨天下午突然叫我更新什么东西,就点了一下,后来拯救者就卡住了。。。。重启,继续工作,一直到了晚上,关机回家回家以看,咦?电脑还亮着,还发热,鼠标也亮着。。。。。只当自己记性不好了,打开模拟器--刺激战场。。。。。没有声音。。。。。。气坏我了,大品牌还有这毛病,,,,,早知道就上船了左键那个...原创 2019-02-14 10:41:25 · 11802 阅读 · 1 评论 -
BUG:statsmodels.tools.sm_exceptions.MissingDataError: exog contains inf or nans
原因statsmodels.api不允许有nan和inf值解决详见我的另一篇文章 https://blog.csdn.net/Da___Vinci/article/details/88556888原创 2019-03-14 17:36:23 · 25009 阅读 · 0 评论 -
BUG:module 'pandas' has no attribute 'ols'
原因pandas的ols方法取消,可使用statsmodels.api具体见我的另一篇文章https://blog.csdn.net/Da___Vinci/article/details/88556888原创 2019-03-14 17:36:32 · 13872 阅读 · 0 评论 -
queue_declare() missing 1 required positional argument: 'queue'
今天学rabbitmq,遇到一个bug,不止这个bug,因为版本原因,很多参数都变了一点,还好变化不大,唯独这个bug,干了好久。原因:生成了随机的channle,但bug要求我指定channle#生成随机queue_nameresult = channel.queue_declare(exclusive=True)解决:‘’,就是填个空值result = channel.q...原创 2019-08-27 17:54:11 · 12449 阅读 · 1 评论 -
LaTeX Error: Unknown option quiet for package fontspec
编译方式错误,fontspec是基于Xe和Le开发的,所以不能使用pdf**进行编译原创 2019-09-16 10:09:49 · 12652 阅读 · 3 评论 -
matplotlib is required for plotting.
使用python绘图报错提示:matplotlib is required for plotting.翻译:请使用matplotlib绘图。原因:没有安装matplotlib,或包安装错误解决:换一种方式安装。点击报错代码部分,即查看源码,可以看到还涉及到了pandas包,将pandas包一并更新。另外提示,未处理数据缺失值也可能引起此错误。 ...原创 2018-10-06 09:09:23 · 12950 阅读 · 0 评论 -
pymysql.err.InternalError: (1054, "Unknown column '' in 'field list'")
sql语句出错sql = "INSERT INTO table1(word) VALUES (%s)" % (str)改为"INSERT INTO table1(word) VALUES ('%s')" % (str)原创 2019-01-20 11:40:34 · 14281 阅读 · 0 评论 -
'bytes' object has no attribute 'encode'
python3中,编码的时候区分了字符串和二进制encode 改为 decode 就可以了原创 2019-01-20 09:54:26 · 29877 阅读 · 0 评论 -
python3\lib\json\decoder.py", line 353, in raw_decode obj, end = self.scan_once(s, idx) json.dec
json加载数据时报错原因:编码问题查看原编码原编码为 GBK,解码后再加载即可response.read().decode('GBK')原创 2019-01-24 17:03:35 · 15453 阅读 · 0 评论 -
AttributeError: 'module' object has no attribute 'rolling'
原因:python版本更新解决:数据源:import pandas as pdBackend TkAgg is interactive backend. Turning interactive mode on.import numpy as npfrom pandas import DataFrame,Seriesclose_px_all = pd.read_csv('D:\...原创 2018-10-23 10:18:14 · 12039 阅读 · 0 评论 -
AttributeError: 'Series' object has no attribute 'order'
原因:python更新解决:order() --->>> sort_values()原创 2018-10-20 18:28:44 · 10780 阅读 · 0 评论 -
TypeError: pivot_table() got an unexpected keyword argument 'rows'
原因:python更新解决: rows--->>> index ,cols--->>> columns原创 2018-10-20 17:42:20 · 10780 阅读 · 0 评论 -
No module named 'basemap' from mpl_toolkits.basemap import Basemap
原因:没有安装basemap解决:下载basemap方法1:https://www.lfd.uci.edu/~gohlke/pythonlibs/#basemap ctrl + F 搜索 basemap 方法2:https://matplotlib.org/basemap/下载好后直接运行exe文件 OK,完美解决...原创 2018-10-17 15:16:10 · 16777 阅读 · 2 评论 -
File "_proj.pyx", line 122, in _proj.Proj._fwd (src/_proj.c:1571) RuntimeError
原因:python版本不一致,导致语法不同解决:把x, y =m(cat_data.LONGITUDE,cat_data.LATITUDE) 改为 x, y = m(cat_data.LONGITUDE.values, cat_data.LATITUDE.values)即可原创 2018-10-18 13:05:13 · 10584 阅读 · 0 评论 -
Sqlserver备份时出现操作系统错误 5(拒绝访问)
sqlserver备份时报错:出现操作系统错误 5(拒绝访问) 首先找到该数据库文件的mdf和ldf,右击属性--安全--编辑 添加everyOne用户,并勾选完全控制,保存 4 一般上述方法应该就能解决问题,如果还没解决,应该是由于备份目标驱动器的分区的文件系统是NTFS,权限设置不足造成的 解决办法:在要备份的硬盘上右击->...原创 2018-07-23 21:22:02 · 12719 阅读 · 0 评论 -
ValueError: We need at least 1 word to plot a word cloud, got 0.
解释:最起码要有一个 字符 用来绘制,已获取 0验证:读取到了内容,但是输出为空白。说明是编码问题text = open(path.join(d, 'D:\python\CompatingD\Cloud_map\\alice.txt')).read()print text 解决:Ctrl+A复制数据,新建txt,选择确定,替换源文件即可 ...原创 2018-11-09 16:41:08 · 18262 阅读 · 1 评论 -
requests.exceptions.SSLError: HTTPSConnectionPool(host='pt.morning-star.cn', port=443): Max retries
Bug:requests.exceptions.SSLError: HTTPSConnectionPool(host='pt.morning-star.cn', port=443): Max retries exceeded with url: /pt-app/api/home/getAllActivityCodes%20 (Caused by SSLError(SSLError("bad...原创 2018-11-07 10:10:10 · 14977 阅读 · 0 评论 -
Message: 'chromedriver' executable needs to be in PATH.
下载chromedriver.exe,放在python安装路径下即可http://npm.taobao.org/mirrors/chromedriver/原创 2019-01-18 10:41:11 · 10532 阅读 · 0 评论 -
使用msi安装mysql,MYSQL8.0启动失败
今天win10安装mysql,入坑使用net start mysql 启动服务提示无法启动服务查看日志mysqld --console文件无法读写,但是文件可以读写解决:需要删除以下2个文件:ib_logfile0和ib_logfile1https://blog.csdn.net/u012465296/article/details/71157286最后泪奔...原创 2019-01-17 11:11:47 · 10842 阅读 · 0 评论 -
self._output(request.encode('ascii')) UnicodeEncodeError: 'ascii' codec can'
原因:python3中url不可以包含中文,需要编码解决:from urllib import parseimport urllibkey = '比特币'encoded_url = 'https://s.weibo.com/weibo/'+urllib.parse.quote(key)+'?q='+urllib.parse.quote(key)+'&typeall=1&a...原创 2019-01-04 08:30:46 · 11689 阅读 · 0 评论 -
Bug: TypeError: sendall() argument 1 must be string or buffer, not dict
背景:网站爬虫,参数设置错误谷歌浏览器查看参数:view source原设置: 新设置:完美解决原创 2018-12-21 11:51:38 · 11603 阅读 · 0 评论