方法一: private string GetMainModuleFilepath(int processId) { string wmiQueryString = "SELECT ProcessId, ExecutablePath FROM Win32_Process WHERE ProcessId = " + processId; using (var searc...
笔记
Error-module ‘tensorflow’ has no attribute ‘GraphDef’ ,’Session’, ‘gfile’
tf.Session 改为 tf.compat.v1.Session tf.GraphDef 改为 tf.compat.v1.GraphDef tf.gfile 改为 tf.io.gfile
tensorflow ModuleNotFoundError: No module named ‘object_detection’
Try install Tensorflow Object Detection Library Packaged pip install tensorflow-object-detection-api https://stackoverflow.com/questions/50113683/modulenotfounderror-no-module-named-object-detection
配置conda和pip的国内镜像
注意:此为win10下的配置说明 配置pip 在C:\Users\username 下新建一个目录pip 在新建的pip目录下新建一个文件pip.ini 在pip.ini文件中添加阿里镜像如下 [global] trusted-host = mirrors...
Win10自动更新,共享打印机连接问题
故障现场:操作失败0x00000 故障极有可能与一款微软刚刚发布的安全更新有关 卸载更新需要几分钟的时间,重启后,客户机访问打印机共享名称、添加打印机恢复正常 如果还不正常 右键“计算机”,找到管理...
firefox从旧的配置文档中恢复重要数据
您的重要数据和它们对应的文件 书签、下载历史记录和浏览历史记录 places.sqlite 该文件包含了您在 Firefox 中所有的书签、下载文件的记录和浏览网页的记录。了解更多信息,请查阅创建,管理书签。 ...
Get elements by XPath – JavaScript
数组 function getElementsByXPath(xpath, parent) { let results = []; let query = document.evaluate(xpath, parent || document, null, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null); fo...
SQLite字符串拼接
select path || '%' from t_category where depth = 0 and type = 0 用'||'拼接字符串 比如path是/1001/的话 那结果就是/1001/% 数字相加 SELECT 'A'+'B' 结果为0 SELECT "A"+"1" 结果为1 S...
关闭beforeonload
Chrome解决方案:--disable-popup-blocking通过ChromeOptions()使用: from selenium import webdriver options.add_argument("--disable-popup-blocking") driver=webdriver.Chrome(chrome_options=optio...
原生js触发react change事件
var input=document.querySelector('input[placeholder="输入标题"]'); //For React 16 and React >=15.6 var nativeInputValueSetter = Object.getOwnPropertyDescriptor(window.HTMLInputElement.prot...