报错信息1 Config value ‘plugins’: The “blog” plugin is not installed 处理方式 pip install mkdocs-blog-plugin 报错信息2 Config value ‘plugins’: The “minify” plugin is not installed 处理方式 pip install mkdocs-minify-plugin 总结在测试python写包, 报错之后,我直接安装了 blog, 结果没有正确, 然后看到一篇文章地址 :参考地址 自己想了下,换了个plugs名字,运...

阅读全文>>

git clone https://username:password@remote-git-repository-url # 例如 git clone https://roc:123456@e.coding.net/roc/example.git 如果用户名使用的是邮箱,那么 @ 符号需要转义成 %40,否则会无法识别邮箱,与 Git 仓库地址前面的 @ 造成冲突: # 例如 git clone https://roc@qq.com:123456@e.coding.net/roc/example.git # 需要写成 git clone https://roc%40qq.c...

阅读全文>>

# 文件更名操作 import os import shutil # 1.获取当前目录 current_path = os.getcwd() # 2.获取当前目录下的所有文件 file_list = os.listdir(current_path) # 需要替换的字符 replace_str = "2022年网络安全项目技术" # replace_str = " " # 3.遍历文件列表 for file in file_list: # 4.判断是否为文件 if os.path.isfile(file): # 5.判断...

阅读全文>>

前端环境搭建nvm的使用nodejs的配置 查看本机的 node版本 安装最新版的 nodejs 安装指定版本nvm install 16.18.1 使用指定的版本 记得使用管理员权限 基于 Node.js 安装cnpm(淘宝镜像) npm install -g cnpm —registry=https://registry.npmmirror.com前端vue环境的安装安装Vuenpm install vue@2.x.xnpm install vue 安装vue命令行工具,即vue-cli 脚手架cnpm install vue-cli -g报错处理遇到一种情况,就是使用vue -V 查看版...

阅读全文>>

更换为淘宝镜像 npm config set registry https://registry.npm.taobao.org 查看更换镜像 npm config get registry 切换会原来的镜像 npm config set registry https://registry.npmjs.org 安装 cnpm npm install -g cnpm —registry=https://registry.npm.taobao.org 使用cnpm 安装module cnpm install xxxx -g webpack执行失败 无法...

阅读全文>>