library not found for -lstdc++.6.0.9
分类:
编程语言 时间:
2020-07-29 10:37:52
阅读次数:
73
解决方案:新建文件log4j.properties log4j.rootLogger=DEBUG, stdout log4j.appender.stdout=org.apache.log4j.ConsoleAppender log4j.appender.stdout.layout=org.apach ...
分类:
移动开发 时间:
2020-07-28 14:33:05
阅读次数:
149
vimrc配置 set nocompatible call pathogen#infect() filetype plugin indent on set fileencodings=utf-8,ucs-bom,gb18030,gbk,gb2312,cp936 set termencoding=ut ...
分类:
系统相关 时间:
2020-07-28 13:55:19
阅读次数:
170
创建命令目录及文件 settings.py中定义命令 代码 from scrapy.commands import ScrapyCommand??class Command(ScrapyCommand): requires_project = True? def syntax(self): retu ...
分类:
其他好文 时间:
2020-07-28 00:16:25
阅读次数:
83
注册表脚本如下 Windows Registry Editor Version 5.00 [HKEY_CLASSES_ROOT\Directory\Background\shell\CMD Here] "ShowBasedOnVelocityId"=dword:00639bc8 "Icon"="cm ...
进入命令行工具,我们可以使用 \help 来查看各个命令的语法 : postgres-# \help <command_name> 例如,我们查看下 select 语句的语法: postgres=# \help select Command: SELECT Description: retrieve ...
分类:
数据库 时间:
2020-07-27 15:50:37
阅读次数:
203
@author: 庄壮壮 1. 下载FUSE并安装 下载地址:https://osxfuse.github.io/ 2. 安装brew /bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew. ...
分类:
Web程序 时间:
2020-07-27 13:57:21
阅读次数:
279
错误提示 UsageError: Line magic function `%%time` not found. 解决方法 将%%time放在代码块的顶行顶格。 出错代码 #n_jobs =3,表示只使用3个内核进行计算 %%time bagging_clf1 = BaggingClassifier ...
分类:
编程语言 时间:
2020-07-27 13:47:44
阅读次数:
87
其实join函数就是字符串的函数,参数和插入的都要是字符串 所以:将s = '_'.join(args)变成s = '_'.join(str(args).strip()) ...
分类:
编程语言 时间:
2020-07-26 22:53:44
阅读次数:
72
Prism.Mvvm: 主要包含 BindableBase 实现数据字段绑定,并有更新通知。 建议先建个基类继承 BindableBase ,然后其他类继承基类,及方便以后有公共属性或方法的使用,也可以方便替换 Prism.Mvvm . 代码例子如下: public class BaseModelV ...
分类:
其他好文 时间:
2020-07-26 19:51:09
阅读次数:
139