码迷,mamicode.com
首页 >  
搜索关键字:yum install python    ( 183139个结果
python解压zip文件
@staticmethoddef unzip_file(failed_file): zip_file = zipfile.ZipFile(failed_file) print(zip_file) if os.path.isdir(failed_file[0:-20]): pass else: os. ...
分类:编程语言   时间:2021-06-07 20:42:48    阅读次数:0
tesseract安装(CentOS)
tesseract安装(CentOS) 1.安装图片相关依赖 yum install autoconf automake libtool libjpeg-devel libpng-devel libtiff-devel zlib-devel 2.下载 wget https://github.com/ ...
分类:其他好文   时间:2021-06-07 20:42:37    阅读次数:0
python selenium 获取元素列表的长度
rows = driver.find_elements_by_css_selector('div.wrapper>ul.list>li')logger.info(len(rows)) ...
分类:编程语言   时间:2021-06-07 20:41:35    阅读次数:0
CentOS7.X yum安装MySQL8.0
查看当前系统版本的详细信息 # cat /etc/redhat-release CentOS Linux release 7.9.2009 (Core) yum源下载 地址:https://dev.mysql.com/downloads/repo/yum/ 下载地址:https://repo.mys ...
分类:数据库   时间:2021-06-07 20:40:56    阅读次数:0
python包自我理解
python包自我理解 1、python包 ? 文件夹下有__init__.py文件,这个文件夹就是一个包 ? 可以通过import包名(也就是文件夹名称)导入包,当执行import包名时python会加载__init__.py文件 ? 可以在__init__.py文件指定导入的模块,那样在导包时就 ...
分类:编程语言   时间:2021-06-07 20:30:25    阅读次数:0
Python连接PostGIS
Python访问PostGIS(建表、空间索引、分区表):https://www.cnblogs.com/likehua/p/3908323.html ...
分类:编程语言   时间:2021-06-07 20:29:14    阅读次数:0
解决SpringCloud中遇到的Could not resolve dependencies for project
1.目录及问题描述 2.解决方案: a:父工程maven执行 clean install b:子工程maven执行 clean package(指的是公共模块) ...
分类:编程语言   时间:2021-06-07 20:26:05    阅读次数:0
uos搭建jenkins
#安装jdksudo apt install openjdk-8-jdk-headless#安装jenkins wget -q -O - https://pkg.jenkins.io/debian/jenkins.io.key | sudo apt-key add - sudo sh -c 'ech ...
分类:其他好文   时间:2021-06-07 20:23:31    阅读次数:0
【Redis】CentOS7安装Redis
安装Redis 首先安装wget命令,wget是一个从网络上下载文件的自由工具。 yum install wget 创建一个目录“soft” mkdir soft cd到soft目录中安装redis 打开Redis官网(https://redis.io/)获取下载链接https://download ...
分类:其他好文   时间:2021-06-07 20:10:20    阅读次数:0
python读取自定义xml文件
一、定义xml文件内容,既然是自定义则所有的根节点随便写 使用xml.dom.minidom三方模块对xml文件进行解析 from xml.dom.minidom import parse def getIP(machineNum): #读取xml文件 domTree = parse("./conf ...
分类:编程语言   时间:2021-06-07 20:09:27    阅读次数:0
183139条   上一页 1 ... 49 50 51 52 53 ... 18314 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!