excel-magic icon indicating copy to clipboard operation
excel-magic copied to clipboard

Do magic to your excel file!

Results 1 excel-magic issues
Sort by recently updated
recently updated
newest added

## 查看本地pip模块是否有过期模块 ``` python pip list --outdated ``` ## 单个模块更新 ``` python pip install -U 模块名 或 pip install --upgrade 模块名 ``` ## 批量更新模块 如果模块较多,建议使用批量更新模块,但是慎行,除非你需要所有本地模块的更新 新建一个main.py (名字可以随便起) 拷贝复制下面的代码 ``` python...