设置淘宝源
npm config set registry https://registry.npm.taobao.org
检查确认
cat ~/.npmrc registry=https://registry.npm.taobao.org
设置淘宝源
npm config set registry https://registry.npm.taobao.org
检查确认
cat ~/.npmrc registry=https://registry.npm.taobao.org
切换 python 至 3.6.5
brew list python --versions brew switch python 3.6.5
升级 python3
brew install python3
link 切换
➜ ✗ brew link python Linking /usr/local/Cellar/python/3.7.7... Error: Could not symlink Frameworks/Python.framework/Headers Target /usr/local/Frameworks/Python.framework/Headers is a symlink belonging to python@2. You can unlink it: brew unlink python@2 解除 python@2 link Unlinking /usr/local/Cellar/python@2/2.7.17... 34 symlinks removed To force the link and overwrite all conflicting files: brew link --overwrite python To list all files that would be deleted: brew link --overwrite --dry-run python ➜ ✗ brew link python --overwrite python Linking /usr/local/Cellar/python/3.7.7... 28 symlinks created
平时自己家里的 CentOS 7 不需要图形界面,所以禁用
查看当前启动模式,发现时界面模式
[root@192 ~]# systemctl get-default graphical.target
将界面模式改为多用户无界面模式,重启生效
[root@192 ~]# systemctl set-default multi-user.target Removed symlink /etc/systemd/system/default.target. Created symlink from /etc/systemd/system/default.target to /usr/lib/systemd/system/multi-user.target. [root@192 ~]# systemctl reboot
alias clean_merged='git checkout master && git branch --merged | grep -v master | xargs git branch -D'
.git/config 添加
[push]
default = current
push 的时候加上 -u
git push -u
sudo pip install -U docker-compose
编写
version: '3.2'
services:
db:
image: mysql:5.7.21
container_name: mysql
hostname: mysql-test-1
restart: always
ports:
- 3306:3306
environment:
- MYSQL_ALLOW_EMPTY_PASSWORD=YES
volumes:
- ./tmp:/var/lib/mysql
broker:
image: redis:3.0-alpine
command: redis-server
container_name: broker
hostname: broker-test-1
restart: always
ports:
- 6379:6379
volumes:
- ./tmp:/var/lib/redis
拉起 docker
docker-compose up -d