摘要:
Git同时配置Gitee和GitHub 建议所有命令在 git bash 中进行 清除git的全局设置 如果之前没有配置过git config,就不用清除了。 通过命令git config --global --list 查看是否设置过。 # 清除name和email git config --gl 阅读全文
摘要:
更换pip源的办法 一、安装包时临时使用 安装时添加-i https://pypi.tuna.tsinghua.edu.cn/simple # eg: 安装wheel pip install wheel -i https://pypi.tuna.tsinghua.edu.cn/simple 二、批量 阅读全文
摘要:
# windows下的python多环境pyenv-win搭建 ## 安装pyenv-win 1. 在PowerShell中安装 > 建议使用管理员身份打开PowerShell ```powershell Invoke-WebRequest -UseBasicParsing -Uri "https: 阅读全文
摘要:
# 多线程开发 使用Semaphore和BoundedSemaphore对象 ## 一、使用Semaphore和BoundedSemaphore对象 在Python中,可以使用Semaphore和BoundedSemaphore来控制多线程信号系统中的计数器。 ### 1. Semaphore 在P 阅读全文
摘要:
# Oracle VM VirtualBox + CentOS 7 本地化部署Yapi服务 ## 一、安装Oracle VM VirtualBox 1.VirtualBox下载地址:`https://www.virtualbox.org/wiki/Downloads` ![image](https: 阅读全文
摘要:
Node守护进程常用的方法 1. forever 使用forever就可以让nodejs的应用,像服务一样在后台继续运行 GitHub:https://github.com/foreverjs/forever # 安装forever npm install forever -g # 启动应用 for 阅读全文
摘要:
# 组件版本 > CentOS 7 > Node v12.22.9 > mongoDB v4.4.22 > Yapi v1.12.0 ## 一、安装node node下载地址: 下载node压缩包到本地,解压缩文件,移动并重命名node ```bash # 下载压缩包到本地 wget https:/ 阅读全文