在执行 pip install 时遇到错误:ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output. ...
分类:
编程语言 时间:
2020-07-04 13:51:56
阅读次数:
525
excepInfo: select id,describe from iwebshop_student_problem where id=256 order by id desc -- You have an error in your SQL syntax; check the manual th ...
分类:
数据库 时间:
2020-07-04 13:48:09
阅读次数:
75
test_scores = [100, 97, 76, 84, 93, 98, 86, 92, 76, 88, 95, 90, 95, 93] print(test_scores[14]) # 报错:IndexError: list index out of range # (索引错误:超出列表范围 ...
分类:
其他好文 时间:
2020-07-04 13:22:17
阅读次数:
87
1.首先去阿里云购买个证书,也有免费的,但是免费的只能使用一年,证书需要绑定域名 2.将证书放进项目 3.配置YML server: ssl: key-store: 55555.pfx key-store-password: 55555 keyStoreType: PKCS12 connection ...
分类:
编程语言 时间:
2020-07-04 11:55:50
阅读次数:
94
今日早晨在客户反馈不能登陆系统了,查看oracle日志。发现如下错误ORA-00257: archiver error. Connect internal only, until freed。该错误是由于归档日志满了,造成的。查看了下V$FLASH_RECOVERY_AREA_USAGE,看看归档目 ...
分类:
其他好文 时间:
2020-07-04 11:52:00
阅读次数:
59
#user nobody; worker_processes 1; #error_log logs/error.log; #error_log logs/error.log notice; #error_log logs/error.log info; #pid logs/nginx.pid; ev ...
分类:
其他好文 时间:
2020-07-04 10:31:41
阅读次数:
106
问题背景 在语音相关的项目测试阶段,出现此类问题 解决方案 谷歌查询 问题原因 pyaudio的运行需要依赖于portaudio这个库,应该先安装一个portaudio库 解决方案 先安装这个库 # 1 手动下载portudio wget http://portaudio.com/archives/ ...
分类:
系统相关 时间:
2020-07-03 23:44:15
阅读次数:
92
此博客链接: 刚安装完数据库,登录时出现下面错误。 方法1 使用数据库免登录方法,先进入数据库后,再修改默认密码后。 找到my.ini文件,在[mysqld]下面添加下面语句 skip-grant-tables 重启mysql,右键桌面底部菜单栏,选择任务管理器。点击详细信息。 点击服务。 找到my ...
分类:
数据库 时间:
2020-07-03 23:07:22
阅读次数:
89
一.消息发送端 pom.xml <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-amqp</artifactId> </dependency> application.y ...
分类:
编程语言 时间:
2020-07-03 21:42:43
阅读次数:
76
导读:后台管理平台经常要上传文件读取文件的内容和导出数据表,因此需要依赖第三方插件xlsx 1、安装依赖 npm install xlsx -S 2、在目标组件vue中引入 import XLSX form 'xlsx 3、简单的创建并导出数据表 data() { return { xlxsData ...
分类:
其他好文 时间:
2020-07-03 19:24:15
阅读次数:
64