51工具盒子

依楼听风雨
笑看云卷云舒,淡观潮起潮落

Python笔记

升级Python后No module named yum处理

升级Python后No module named yum处理

厉飞雨 阅读(9) 评论(0) 赞(1)

#### 概述 因项目需求对Python版本进行升级,但升级完成后yum不可用。 [root@localhost ~]# yum list There was a problem importing one of the Python modules required to run yum. The error leading to this pro...

升级python后yum缺失_sqlitecache.so依赖

升级python后yum缺失_sqlitecache.so依赖

厉飞雨 阅读(8) 评论(0) 赞(1)

#### 概述 由于前公司运维升级了python版本,导致模块缺失无法使用yum命令。 There was a problem importing one of the Python modules required to run yum. The error leading to this problem was: /usr/lib64/pyth...

升级python导致semanage缺失policy.so依赖

升级python导致semanage缺失policy.so依赖

厉飞雨 阅读(8) 评论(0) 赞(1)

#### 概述 由于前公司运维升级python导致缺少semanage命令关键依赖导致无法使用命令。 [root@localhost ~]# semanage port -l Traceback (most recent call last): File "/usr/sbin/semanage", line 32, in &l...

指定python的pip源

指定python的pip源

厉飞雨 阅读(7) 评论(0) 赞(1)

因为国内网络环境,在访问境外网站时可能会出现链接重置、访问速度慢或超时等问题。 #### 解决办法 ##### 临时指定 在命令后加上-i参数,即可指定pip源。 pip install numpy -i https://pypi.tuna.tsinghua.edu.cn/simple ##### 永久修改 修改全局配置文件中的index-url项修改为指定...

Python对Excel进行数据对比

Python对Excel进行数据对比

厉飞雨 阅读(6) 评论(0) 赞(1)

接公司任务,通过Python对Excel文件内容进行比对,判断是否有新内容增加 以下为Python脚本内容: ```lang-bash # coding: utf-8 #----引用模块----# import pandas as pd import json import xlrd #----引用模块----# def excel_one_line_to_list(): ...

通过Python脚本获取指定日期一周范围时间

通过Python脚本获取指定日期一周范围时间

厉飞雨 阅读(7) 评论(0) 赞(2)

主要实现功能为提供一个时间节点,获取时间节点星期内的所有日期。 执行结果为: ```lang-python 开始日期: 2020-12-28 结束日期: 2021-01-03 2020-12-28 2020-12-29 2020-12-30 2020-12-31 2021-01-01 2021-01-02 2021-01-03 ``` 以下为Python脚本内容: ``...