谦让石头

文章
3
资源
1
加入时间
2年10月17天

ubuntu16.04系统下安装fasttext文本分类库

安装方法:1.conda install libgcc(解决下面的错误)2.pip install fasttext出现错误:ImportError: /home/chris/anaconda3/lib/python3.5/site-packages/fasttext.cpython-35m-x86_64-linux-gnu.so: undefined symbol: _ZTVNSt...

android ------- MVVM+ databing + lifecycle 错误集锦

1.Caused by: java.lang.RuntimeException: view tag isn't correct on view:null导致这个错误的原因是:模块之间的layout资源冲突了. 以我的项目为例子:我在Mvvm 模块中使用了DataBindingUtil.setContentView(this,R.layout.activity_main); 而 app模块中也有一个activity_main;在运行后,会合并多个库项目,导致Mvvm 模块中的activity_m

最明白的 not exists 双层嵌套讲解 SQL 查询语句

not exists 双层嵌套 SQL 查询语句先看一下理解结果// 选择一个学生Select Sname from Student // 对于这个学生Where not exists // 不存在这样一门课 (select * from Course // 这门课由 001 号教师教授,并且这门课不存在于这个学生学习的课程中 where Course.T# = '001' and not exists (select * from SC where S