码迷,mamicode.com
首页 >  
搜索关键字:错误 path    ( 111391个结果
解决pycocotools/_mask.c:646:10: fatal error: maskApi.h: No such file or directory
有人说要先安装Cython,但是我安装了Cython之后还是报这个错误,然后就换了一种安装思路 先去清华源镜像站https://opentuna.cn/pypi/web/simple/pycocotools/下载pycocotools-2.0.2.tar.gz 然后cd到pycocotools-2. ...
分类:Windows程序   时间:2021-06-28 20:59:00    阅读次数:0
C#调用MySQL几个错误的解决方法
公司项目C#操作mysql数据库时出现几个问题的解决方案作下记录 1、The MySQL server is running with the --secure-file-priv option so it cannot execute this statement” 解决方法:修改my.ini 配 ...
分类:数据库   时间:2021-06-28 20:37:38    阅读次数:0
OSError: mysql_config not found
解决python 安装 第三方包时报OSError: mysql_config not found的错误 Ubuntu sudo apt-get install libmysqlclient-dev centos7 yum install mysql-devel gcc gcc-devel pyth ...
分类:数据库   时间:2021-06-28 20:20:31    阅读次数:0
使用Jmeter进行压力测试
使用Jmeter进行压力测试 官网:https://jmeter.apache.org/ 1. 介绍 ? Apache JMeter是Apache组织开发的基于Java的压力测试工具。用于对软件做压力测试,它最初被设计用于Web应用测试,但后来扩展到其他测试领域。 它可以用于测试静态和动态资源,例如 ...
分类:其他好文   时间:2021-06-28 20:16:09    阅读次数:0
Appium常用API
常用 # 安装apk到手机 driver.install_app(app_path) 参数: app_path:脚本机器中APK的文件路径 # 手机中移除app driver.remove_app(app_id) 参数: app_id:需要卸载的app包名 # 判断app是否安装 driver.is ...
分类:移动开发   时间:2021-06-28 20:11:33    阅读次数:0
TP5.1 简单使用QueryList爬数据(官方有错误)
先安装 composer require jaeger/querylist 完成后会有jaeger文件 网页布局图 使用 use QL\QueryList; public function test() { $url = 'https://www.ivsky.com/tupian/wupin/ind ...
分类:其他好文   时间:2021-06-28 20:10:58    阅读次数:0
golang 1. hello.go
package main //程序的包名 /* import "fmt" import "time" */ import ( "fmt" "time" ) //main函数 func main() { //函数的{ 一定是 和函数名在同一行的,否则编译错误 //golang中的表达式,加";", 和 ...
分类:其他好文   时间:2021-06-28 20:07:48    阅读次数:0
Laravel框架门面Facade源码分析
来源:https://segmentfault.com/a/1190000009369566 这篇文章我们开始讲 laravel 框架中的门面 Facade,什么是门面呢?官方文档: Facades(读音:/f??säd/ )为应用程序的服务容器中可用的类提供了一个「静态」接口。Laravel 自带 ...
分类:其他好文   时间:2021-06-28 19:47:58    阅读次数:0
List<T>集合实现二叉查找算法
1.需求 如果需要在集合中匹配出某个元素的序列,并返回这个元素在集合中出现的次数。 2.线性方式 在没有更好的算法策略之前,我们通常实现的方式如下: 1 List<string> dataList = new List<string>() { "张三","李四", "李四", "李四", "李四", ...
分类:编程语言   时间:2021-06-28 19:25:54    阅读次数:0
Python turtle安装和使用教程
1 安装turtle Python2安装命令: pip install turtule Python3安装命令: pip3 install turtle 因为turtle库主要是在Python2中使用的,所以安装的时候可能会提示错误: Command "python setup.py egg_inf ...
分类:编程语言   时间:2021-06-28 19:11:31    阅读次数:0
111391条   上一页 1 ... 7 8 9 10 11 ... 11140 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!