查看所有公式 from openpyxl.utils import FORMULAE print(len(FORMULAE)) print(FORMULAE) # 公式是否存在 print('x' in FORMULAE) # 返回为 True from openpyxl import Workbo ...
分类:
其他好文 时间:
2021-05-23 23:04:01
阅读次数:
0
yarn和npm都是包管理工具,yarn比npm好用 特点 速度快、离线模式 离线模式:之前安装过的包会被保存进缓存目录,以后安装就直接从缓存中复制过来 不会出现npm可能出现的问题 npm把依赖安装到node_modules目录的过程具有不确定性,而由于重复的依赖可以合并到一起,从而导致node_ ...
分类:
其他好文 时间:
2021-05-23 23:02:57
阅读次数:
0
下载、安装、服务启动/停止 下载redis压缩包 安装 压缩包解压到指定的路径 使用cmd,不要使用powershell 打开cmd,并进入到该路径,并输入 redis-server redis.windows.conf 关掉当前cmd窗口,重新打开cmd,再次进入到该路径,并输入 redis-se ...
分类:
其他好文 时间:
2021-05-23 23:01:20
阅读次数:
0
tqdm 是一个快速,可扩展的Python进度条 可以在 Python 长循环中添加一个进度提示信息,用户只需要封装任意的迭代器 tqdm(iterator)。 使用pip就可以安装。 ' from tqdm import tqdm for i in tqdm(range(1000)): #do s ...
分类:
编程语言 时间:
2021-05-23 23:00:33
阅读次数:
0
目录 1.vcenter 6.7安装要求;2.vcenter第一阶段安装失败,提示:"Unable to proceed with stage 2 of the deployment process. Click close to exit the installer.”3.无DNS下部署安装vce ...
分类:
其他好文 时间:
2021-05-23 22:59:26
阅读次数:
0
关于Ecpilse使用 配置 选用JavaEE透视图,而非Java透视图 编码 UTF-8:Window-->prefrences-->General >Workspace >Text file encoding >Other -->UTF-8 字体调节:Window-->prefrences--> ...
分类:
系统相关 时间:
2021-05-23 22:58:22
阅读次数:
0
一、下载 tomcat下载链接:https://tomcat.apache.org/ 1、进入tomcat官网后,选择需要下载的版本。我使用的是tomcat9,所以在这我选择tomcat9 2、选择zip(pgp,sha2,sha512)进行下载,下载zip的好处就是不用安装 ,直接下载解压就可以使 ...
分类:
其他好文 时间:
2021-05-20 17:49:52
阅读次数:
0
编译与安装Boost_1.69.0 到Boost官网下载 boost_1_69_0.zip 下载Boost_1.69.0 把下载的 boost_1_69_0.zip 解压到 E:\source\boost_1_69_0 下; 编译Boost_1.69.0 执行其下的脚本文件bootstrap.bat ...
测试ts代码的时候 为了方便 不用tsc去编译 直接用ts-node去联调ts代码 安装typescript npm install -g typescript //$ tsc -v //Version 3.2.2 安装ts-node npm官方地址https://www.npmjs.com/pac ...
分类:
其他好文 时间:
2021-05-04 16:33:48
阅读次数:
0
如果用Python3的一些包,特别是科学计算及数据处理的话,Anaconda是一个不错的发行版本,它预安装了很多流行的python3 的包,它的官网在 https://www.anaconda.com/ archives网址在 https://repo.anaconda.com/archive/ 有 ...
分类:
编程语言 时间:
2021-05-04 16:29:50
阅读次数:
0