摘要: 1.删除远程文件 git rm --cached 文件名2.删除远程文件夹 git rm -r --cached 文件夹名3.git commit -m "<commit message>"git push 阅读全文
posted @ 2021-07-28 10:36 那nian_夏天 阅读(1661) 评论(0) 推荐(0) 编辑
摘要: 可参考:https://blog.csdn.net/hyl899/article/details/116592344 阅读全文
posted @ 2021-07-12 17:43 那nian_夏天 阅读(39) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2021-07-12 17:41 那nian_夏天 阅读(30) 评论(0) 推荐(0) 编辑
摘要: 地址:https://archive.apache.org/dist/jmeter/binaries/ 阅读全文
posted @ 2021-07-12 17:40 那nian_夏天 阅读(88) 评论(0) 推荐(0) 编辑
摘要: 可参考:https://blog.csdn.net/weixin_45466049/article/details/105880188 阅读全文
posted @ 2021-07-12 17:38 那nian_夏天 阅读(75) 评论(0) 推荐(0) 编辑
摘要: python读取图片里面的文字 需要安装的依赖包:PIL Pytesseract 1、安装包 PIL 就是pillow包,直接找到对应的whl包安装(https://www.lfd.uci.edu/~gohlke/pythonlibs/) 注意:pillow是用于替代PIL的,所以在实际使用中需要i 阅读全文
posted @ 2021-06-01 16:08 那nian_夏天 阅读(347) 评论(0) 推荐(0) 编辑
摘要: df -h 阅读全文
posted @ 2021-02-04 14:11 那nian_夏天 阅读(49) 评论(0) 推荐(0) 编辑
摘要: 是由于pymysql版本太低了,发现版本是0.9.3 卸载该版本pip3 uninstall pymysql 安装新版本0.10.1,pip3 install pymysql==0.10.1(高于该本版的应该都可以,没做尝试) 阅读全文
posted @ 2021-02-04 11:19 那nian_夏天 阅读(436) 评论(0) 推荐(0) 编辑
摘要: 1.一般安装python3的时候会自动安装pip3 下面是手动安装 wget --no-check-certificate https://pypi.python.org/packages/source/p/pip/pip-9.0.1.tar.gz#md5=3a73c4188f8dbad6a1e6f 阅读全文
posted @ 2021-02-03 18:37 那nian_夏天 阅读(1822) 评论(0) 推荐(0) 编辑
摘要: 1.安装依赖环境 yum -y install zlib-devel bzip2-devel openssl-devel ncurses-devel sqlite-devel readline-devel tk-devel gdbm-devel db4-devel libpcap-devel xz- 阅读全文
posted @ 2021-02-03 18:36 那nian_夏天 阅读(498) 评论(0) 推荐(0) 编辑