Debug
EUNC
IT搬砖大师
展开
-
MySQL服务挂了 (10061) 怎么解决
Can’t connect to MySQL server on ‘localhost’ (10061)解决方法D:\mysql5.7\bin>mysql -uroot -pEnter password: ******ERROR 2003 (HY000): Can't connect to MySQL server on 'localhost' (10061)1. 检查my.ini配置文件首先检查 MySQL 的配置文件my.ini/my.conf是否修改了什么数据主要看[mysqld原创 2020-07-22 16:15:31 · 3636 阅读 · 0 评论 -
安装tesserocr的报错RuntimeError: Failed to init API, possibly an invalid tessdata path解决办法
前置环境windows 10 操作系统tesseract-ocr-w64-setup-v5.0.0-alpha.20191030.exe 安装路径在C:\Program Files\Tesseract-OCRtesserocr-2.4.0-cp37-cp37m-win_amd64.whl 安装方法:pip install ./tesserocr-2.4.0-cp37-cp37...原创 2020-01-07 20:29:16 · 4697 阅读 · 2 评论 -
安装RedisDump以及注意ERROR (Errno::ENOENT)
RedisDump是一个用于Redis数据导入/导出的工具,是基于Ruby实现的,安装RedisDump,需要先安装Ruby。1. 相关链接GitHub:https://github.com/delano/redis-dump官方文档:http://delanotes.com/redis-dumprubyinstaller: https://rubyinstaller.org/downl...原创 2019-12-27 11:23:59 · 2090 阅读 · 0 评论 -
【Python】fun_connect_main() missing 1 required positional argument: 'self'
fun_connect_main() missing 1 required positional argument: 'self'调用类的方法时,注意不同的状态。 调用类的实例方法, 1、无参数时,如果没有直接实例该类,必须加:self; 或者在调用方法时,提前定义这个类的实例,才能直接调用该类的实例方法。 2、有参数时,也要加se...原创 2018-12-28 09:25:55 · 3211 阅读 · 0 评论 -
【Python】RuntimeError: super-class __init__() of type TCPConnect was never called
RuntimeError: super-class __init__() of type TCPConnect was never called #!/usr/bin/env python3# -*- coding: utf-8 -*-import sysfrom PyQt5 import QtWidgetsfrom myTcpConnect.ui_tcp_login_v1 ...原创 2019-01-05 15:45:44 · 11346 阅读 · 3 评论 -
【Python】TypeError: unsupported operand type(s) for +: 'int' and 'NoneType'
TypeError: unsupported operand type(s) for +: 'int' and 'NoneType' 示例代码:# 字典推导式:字母大小写合并case = {'a': 10, 'b': 34, 'A': 7, 'z': 3}case_frequency = { k.lower(): case.get(k.lower(), 0) + ...原创 2019-01-03 14:55:39 · 13327 阅读 · 0 评论 -
【Python3】TypeError: unhashable type: 'list' -Python字典里面不能有列表
Python字典里面不能有列表#!/usr/bin/env python3# -*- coding: utf-8 -*-d1 = {}d2 = {3: 5}d3 = {[1, 2, 3]: 'user'}d4 = {(1, 2, 3): 'user'}print(type(d4))执行上面代码会报错,Traceback (most recent call last): ...原创 2019-01-24 09:46:42 · 3078 阅读 · 0 评论 -
MySQL连接异常:2003 - Can't connect to MySQL server on 'localhost'
异常描述2003 - Can't connect to MySQL server on 'localhost'(10061 "Unknown error")解决方案wins系统:找到MySQL的安装路径:mysql/bin/mysqld.exe双击`mysqld.exe`以启动mysql服务再之,可以写个脚本或者配置windows服务,使之开机自启动。...原创 2019-06-17 09:45:22 · 2430 阅读 · 0 评论