码迷,mamicode.com
首页 >  
搜索关键字:shared library    ( 12117个结果
linux链接相关
程序函数库可分为3种类型:静态函数库(static libraries)、共享函数库(shared libraries)、动态加载函数库(dynamically loaded libraries): 静态函数库,是在程序执行前就加入到目标程序中去了; 共享函数库,则是在程序启动的时候加载到程序中,它 ...
分类:系统相关   时间:2020-07-02 16:10:56    阅读次数:85
向表格中插入图片
from docx import Document from docx.shared import Cm w=Document(r'F:\word练习\qq.docx') run=w.tables[0].cell(0,0).paragraphs[0].add_run() run.add_pictur ...
分类:其他好文   时间:2020-07-02 11:57:14    阅读次数:75
python内置函数-排列组合函数
python内置函数-排列组合函数 product 笛卡尔积 (有放回抽样排列) permutations 排列 (不放回抽样排列) combinations 组合,没有重复 (不放回抽样组合) combinations_with_replacement 组合,有重复 (有放回抽样组合) 详细的参见 ...
分类:编程语言   时间:2020-07-01 14:13:21    阅读次数:81
【Sublime Text3】【环境配置】【Mac】
/Users/wangxue/Library/Application Support/Sublime Text 3/Installed Packages ...
分类:系统相关   时间:2020-07-01 14:13:05    阅读次数:95
MySQL(Oracle)模糊查询 使用 instr () 替代 like 提升效率
大家都知道like的效率很低,数据量大就会很慢,今天发现了一个内置函数instr()效率比like高 SELECT * FROM msg_list WHERE title LIKE '%涂山%' 可以替换为: SELECT * FROM msg_list WHERE INSTR(title,'涂山' ...
分类:数据库   时间:2020-07-01 14:11:02    阅读次数:110
error while loading shared libraries: libhiredis.so.0.14: cannot open shared object file: No such file or directory
hiredis 的应用程序出错。 ./example-libevent: error while loading shared libraries: libhiredis.so.0.14: cannot open shared object file: No such file or directo ...
分类:其他好文   时间:2020-07-01 13:03:53    阅读次数:97
R vif() 以及 step()
library(package="car") data <- read.csv("C:\\users\\mike1\\desktop\\data\\RData\\hald水泥数据.csv", header=T, sep=",",fileEncoding = "utf-8", stringsAsFac ...
分类:其他好文   时间:2020-07-01 00:07:17    阅读次数:74
mac下使用snailSVN的踩坑之旅
一个很心酸的故事,公司了使用苹果电脑的只有我一个人,然后刚开始使用苹果电脑,开启了我饿自闭之旅,网上查到的一些方法是不可以使用的,所以我把正确的方法记录下来,给大家指个路 首先,说明下,本人的电脑是Mac2020 遇到问题的场景:和另一个人同时操作了同一个文件,然后导致冲突 问题1:由于系统更新,导 ...
分类:系统相关   时间:2020-06-30 20:37:45    阅读次数:425
批量爬取网站上的文本和图片,并保存至word中
1 from pyquery import PyQuery as pq 2 import requests as rs 3 from docx import Document 4 from docx.shared import RGBColor 5 6 7 html = ''' 8 https:// ...
分类:Web程序   时间:2020-06-30 17:15:14    阅读次数:117
The type XXX cannot be resolved. It is indirectly referenced from required .class files错误.
https://blog.csdn.net/linyeban/article/details/53812641 在Eclipse中遇到The type XXX cannot be resolved. It is indirectly referenced from required .class f ...
分类:其他好文   时间:2020-06-29 16:56:58    阅读次数:83
12117条   上一页 1 ... 27 28 29 30 31 ... 1212 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!