# 安装最新版 MySQL(默认是 9.x) brew install mysql # 启动 MySQL 服务 brew services start mysql # 初始化安全设置(设置 root 密码) mysql_secure_installation […]
Category: Mac
Delete mysql on Mac
# 停止 MySQL 服务 brew services stop mysql # 卸载 MySQL 软件包 brew uninstall mysql # 删除数据目录(数据库文件、日志、socket 全部清空) sudo rm […]
Mac Keys & Symbol
No. Option + Symbol Option + Shift + Symbol 1 Option + 0 º Option + Shift + 0 ‚ […]
Setup Python Web Environment on LNMP
# Given the target directories tree as below, the website is ‘abc.com’, the virtual environment with name ‘env’, the project’s […]
Setup Local(macOS) Python Web Environment
Given the target path is “/root/home/python” # Step 1: install homebrew /bin/bash -c “$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)” # Step 2: install […]
Set Sublime Text3 for Python in MacOS
# Step 1: Check the interpreter file path in Terminal as below type -a python3 # it will outputs information […]
How to install Python3 on Mac
# Step 1: install brew /bin/bash -c “$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)” # Step 2: install python by brew brew install python […]
Make an USB macOS Installer
## If the image “Montery” located in the “application” directory, do the following command in the terminal if your USB […]
Stop macOS Update Hint
Go to find the “hosts” file in /etc and modify it as below: cd /etc/ cat hosts ##### and it […]
Install Iterm2 & oh my zsh via homebrew
Step 1: Download the iterm2 from https://www.iterm2.com Step 2: Run the terminal and install the homebrew as bellow: Step 3: install […]