1、打开 git bush 执行一下这个命令 git config --global credential.helper store 2、触发下(拉取),输入帐号密码 3、再拉取下,就不会出现要输入帐号密码了
笔记
windows安装paddle
windows需手动下载shpely https://www.lfd.uci.edu/~gohlke/pythonlibs/#shapely pip install Shapely-1.7.1-cp38-cp38-win_amd64.whl pip install numpy==1.19 pip install paddlepaddle==2.0.0rc0 -i https...
nuxt错误Mismatching childNodes vs. VNodes
使用v-show替换v-if 来源:https://github.com/nuxt/nuxt.js/issues/1594
在使用之前,这个缓存组件并没有默认集成,需要自己安装后才可以使用 yarn add lru-cache 1.nuxt.config.js module.exports = { render: { bundleRenderer: { cache: require('lru-cache')({ ...
设置NPM/Electron国内源
Yarn设置国内镜像 yarn config set registry https://registry.npm.taobao.org yarn config set disturl https://npm.taobao.org/dist yarn config set electron_mirror https://npm.taobao.org/mirrors/elect...
npm设置python路径
npm config set python=E:/command_program/Miniconda2/envs/py27_32/python.exe
conda安装32位python
set CONDA_FORCE_32BIT=1 conda create -n py27_32 python=2.7
windows手动安装宝塔
0.复制windows server的btsoft到本地 1.新建环境变量 BT_PANEL=D:\Btsoft\panel BT_PYTHON=E:\command_program\Miniconda2\envs\bt3 BT_SETUP=D:\Btsoft 加入path环境变量 E:\command_program\sqlite3 E...
将pip源更换到国内镜像 用pip管理工具安装库文件时,默认使用国外的源文件,因此在国内的下载速度会比较慢,可能只有50KB/s。幸好,国内的一些顶级科研机构已经给我们准备好了各种镜像,下载速度可达2MB/s。 其...
How to Install Sqlite3 on Windows 10
Sqlite is a serverless relational database management system, what we called as an embedded database. It is very lightweight and very easy to use. In this article we are going to see how to install...