mac 安装homebrew

vim brew_install.sh

输入:

#!/bin/bash
set -u# First check if the OS is Linux.
if [[ "$(uname)" = "Linux" ]]; thenHOMEBREW_ON_LINUX=1
fi# Check if macOS is ARM
if [[ "$(uname)" = "Darwin" ]] && [[ "$(sysctl -n hw.optional.arm64 2>/dev/null || echo '0')" = "1" ]]; thenHOMEBREW_APPLE_SILICON=1
fi# On macOS, this script installs to /usr/local only.
# On Linux, it installs to /home/linuxbrew/.linuxbrew if you have sudo access
# and ~/.linuxbrew otherwise.
# To install elsewhere (which is unsupported)
# you can untar https://github.com/Homebrew/brew/tarball/master
# anywhere you like.
if [[ -z "${HOMEBREW_ON_LINUX-}" ]]; thenHOMEBREW_PREFIX="/usr/local"HOMEBREW_REPOSITORY="/usr/local/Homebrew"HOMEBREW_CACHE="${HOME}/Library/Caches/Homebrew"STAT="stat -f"CHOWN="/usr/sbin/chown"CHGRP="/usr/bin/chgrp"GROUP="admin"TOUCH="/usr/bin/touch"
elseHOMEBREW_PREFIX_DEFAULT="/home/linuxbrew/.linuxbrew"HOMEBREW_CACHE="${HOME}/.cache/Homebrew"STAT="stat --printf"CHOWN="/bin/chown"CHGRP="/bin/chgrp"GROUP="$(id -gn)"TOUCH="/bin/touch"
fi
BREW_REPO="https://github.com/Homebrew/brew"# TODO: bump version when new macOS is released
MACOS_LATEST_SUPPORTED="10.15"
# TODO: bump version when new macOS is released
MACOS_OLDEST_SUPPORTED="10.13"# For Homebrew on Linux
REQUIRED_RUBY_VERSION=2.6  # https://github.com/Homebrew/brew/pull/6556
REQUIRED_GLIBC_VERSION=2.13  # https://docs.brew.sh/Homebrew-on-Linux#requirements# no analytics during installation
export HOMEBREW_NO_ANALYTICS_THIS_RUN=1
export HOMEBREW_NO_ANALYTICS_MESSAGE_OUTPUT=1# string formatters
if [[ -t 1 ]]; thentty_escape() { printf "\033[%sm" "$1"; }
elsetty_escape() { :; }
fi
tty_mkbold() { tty_escape "1;$1"; }
tty_underline="$(tty_escape "4;39")"
tty_blue="$(tty_mkbold 34)"
tty_red="$(tty_mkbold 31)"
tty_bold="$(tty_mkbold 39)"
tty_reset="$(tty_escape 0)"have_sudo_access() {local -a argsif [[ -n "${SUDO_ASKPASS-}" ]]; thenargs=("-A")fiif [[ -z "${HAVE_SUDO_ACCESS-}" ]]; thenif [[ -n "${args[*]-}" ]]; then/usr/bin/sudo "${args[@]}" -l mkdir &>/dev/nullelse/usr/bin/sudo -l mkdir &>/dev/nullfiHAVE_SUDO_ACCESS="$?"fiif [[ -z "${HOMEBREW_ON_LINUX-}" ]] && [[ "$HAVE_SUDO_ACCESS" -ne 0 ]]; thenabort "Need sudo access on macOS (e.g. the user $USER to be an Administrator)!"fireturn "$HAVE_SUDO_ACCESS"
}shell_join() {local argprintf "%s" "$1"shiftfor arg in "$@"; doprintf " "printf "%s" "${arg// /\ }"done
}chomp() {printf "%s" "${1/"$'\n'"/}"
}ohai() {printf "${tty_blue}==>${tty_bold} %s${tty_reset}\n" "$(shell_join "$@")"
}warn() {printf "${tty_red}Warning${tty_reset}: %s\n" "$(chomp "$1")"
}abort() {printf "%s\n" "$1"exit 1
}execute() {if ! "$@"; thenabort "$(printf "Failed during: %s" "$(shell_join "$@")")"fi
}execute_sudo() {local -a args=("$@")if [[ -n "${SUDO_ASKPASS-}" ]]; thenargs=("-A" "${args[@]}")fiif have_sudo_access; thenohai "/usr/bin/sudo" "${args[@]}"execute "/usr/bin/sudo" "${args[@]}"elseohai "${args[@]}"execute "${args[@]}"fi
}getc() {local save_statesave_state=$(/bin/stty -g)/bin/stty raw -echoIFS= read -r -n 1 -d '' "$@"/bin/stty "$save_state"
}wait_for_user() {local cechoecho "Press RETURN to continue or any other key to abort"getc c# we test for \r and \n because some stuff does \r insteadif ! [[ "$c" == $'\r' || "$c" == $'\n' ]]; thenexit 1fi
}major_minor() {echo "${1%%.*}.$(x="${1#*.}"; echo "${x%%.*}")"
}if [[ -z "${HOMEBREW_ON_LINUX-}" ]]; thenmacos_version="$(major_minor "$(/usr/bin/sw_vers -productVersion)")"
fiversion_gt() {[[ "${1%.*}" -gt "${2%.*}" ]] || [[ "${1%.*}" -eq "${2%.*}" && "${1#*.}" -gt "${2#*.}" ]]
}
version_ge() {[[ "${1%.*}" -gt "${2%.*}" ]] || [[ "${1%.*}" -eq "${2%.*}" && "${1#*.}" -ge "${2#*.}" ]]
}
version_lt() {[[ "${1%.*}" -lt "${2%.*}" ]] || [[ "${1%.*}" -eq "${2%.*}" && "${1#*.}" -lt "${2#*.}" ]]
}should_install_git() {if [[ $(command -v git) ]]; thenreturn 1fi
}should_install_curl() {if [[ $(command -v curl) ]]; thenreturn 1fi
}should_install_command_line_tools() {if [[ -n "${HOMEBREW_ON_LINUX-}" ]]; thenreturn 1fiif [[ -n "${HOMEBREW_APPLE_SILICON-}" ]]; thenreturn 1;fiif version_gt "$macos_version" "10.13"; then! [[ -e "/Library/Developer/CommandLineTools/usr/bin/git" ]]else! [[ -e "/Library/Developer/CommandLineTools/usr/bin/git" ]] ||! [[ -e "/usr/include/iconv.h" ]]fi
}get_permission() {$STAT "%A" "$1"
}user_only_chmod() {[[ -d "$1" ]] && [[ "$(get_permission "$1")" != "755" ]]
}exists_but_not_writable() {[[ -e "$1" ]] && ! [[ -r "$1" && -w "$1" && -x "$1" ]]
}get_owner() {$STAT "%u" "$1"
}file_not_owned() {[[ "$(get_owner "$1")" != "$(id -u)" ]]
}get_group() {$STAT "%g" "$1"
}file_not_grpowned() {[[ " $(id -G "$USER") " != *" $(get_group "$1") "*  ]]
}# Please sync with 'test_ruby()' in 'Library/Homebrew/utils/ruby.sh' from Homebrew/brew repository.
test_ruby () {if [[ ! -x $1 ]]thenreturn 1fi"$1" --enable-frozen-string-literal --disable=gems,did_you_mean,rubyopt -rrubygems -e \"abort if Gem::Version.new(RUBY_VERSION.to_s.dup).to_s.split('.').first(2) != \Gem::Version.new('$REQUIRED_RUBY_VERSION').to_s.split('.').first(2)" 2>/dev/null
}no_usable_ruby() {local ruby_execIFS=$'\n' # Do word splitting on new lines onlyfor ruby_exec in $(which -a ruby); doif test_ruby "$ruby_exec"; thenreturn 1fidoneIFS=$' \t\n' # Restore IFS to its default valuereturn 0
}outdated_glibc() {local glibc_versionglibc_version=$(ldd --version | head -n1 | grep -o '[0-9.]*$' | grep -o '^[0-9]\+\.[0-9]\+')version_lt "$glibc_version" "$REQUIRED_GLIBC_VERSION"
}if [[ -n "${HOMEBREW_ON_LINUX-}" ]] && no_usable_ruby && outdated_glibc
thenabort "$(cat <<-EOFABORTHomebrew requires Ruby $REQUIRED_RUBY_VERSION which was not found on your system.Homebrew portable Ruby requires Glibc version $REQUIRED_GLIBC_VERSION or newer,and your Glibc version is too old.See ${tty_underline}https://docs.brew.sh/Homebrew-on-Linux#requirements${tty_reset}Install Ruby $REQUIRED_RUBY_VERSION and add its location to your PATH.EOFABORT)"
fi# USER isn't always set so provide a fall back for the installer and subprocesses.
if [[ -z "${USER-}" ]]; thenUSER="$(chomp "$(id -un)")"export USER
fi# Invalidate sudo timestamp before exiting (if it wasn't active before).
if ! /usr/bin/sudo -n -v 2>/dev/null; thentrap '/usr/bin/sudo -k' EXIT
fi# Things can fail later if `pwd` doesn't exist.
# Also sudo prints a warning message for no good reason
cd "/usr" || exit 1####################################################################### script
if should_install_git; thenabort "$(cat <<EOABORT
You must install Git before installing Homebrew. See:${tty_underline}https://docs.brew.sh/Installation${tty_reset}
EOABORT
)"
fiif should_install_curl; thenabort "$(cat <<EOABORT
You must install cURL before installing Homebrew. See:${tty_underline}https://docs.brew.sh/Installation${tty_reset}
EOABORT
)"
fiif [[ -z "${HOMEBREW_ON_LINUX-}" ]]; thenhave_sudo_access
elseif [[ -n "${CI-}" ]] || [[ -w "$HOMEBREW_PREFIX_DEFAULT" ]] || [[ -w "/home/linuxbrew" ]] || [[ -w "/home" ]]; thenHOMEBREW_PREFIX="$HOMEBREW_PREFIX_DEFAULT"elsetrap exit SIGINTif [[ $(/usr/bin/sudo -n -l mkdir 2>&1) != *"mkdir"* ]]; thenohai "Select the Homebrew installation directory"echo "- ${tty_bold}Enter your password${tty_reset} to install to ${tty_underline}${HOMEBREW_PREFIX_DEFAULT}${tty_reset} (${tty_bold}recommended${tty_reset})"echo "- ${tty_bold}Press Control-D${tty_reset} to install to ${tty_underline}$HOME/.linuxbrew${tty_reset}"echo "- ${tty_bold}Press Control-C${tty_reset} to cancel installation"fiif have_sudo_access; thenHOMEBREW_PREFIX="$HOMEBREW_PREFIX_DEFAULT"elseHOMEBREW_PREFIX="$HOME/.linuxbrew"fitrap - SIGINTfiHOMEBREW_REPOSITORY="${HOMEBREW_PREFIX}/Homebrew"
fiif [[ "$UID" == "0" ]]; thenabort "Don't run this as root!"
elif [[ -d "$HOMEBREW_PREFIX" && ! -x "$HOMEBREW_PREFIX" ]]; thenabort "$(cat <<EOABORT
The Homebrew prefix, ${HOMEBREW_PREFIX}, exists but is not searchable. If this is
not intentional, please restore the default permissions and try running the
installer again:sudo chmod 775 ${HOMEBREW_PREFIX}
EOABORT
)"
fiif [[ -z "${HOMEBREW_ON_LINUX-}" ]]; thenif version_lt "$macos_version" "10.7"; thenabort "$(cat <<EOABORT
Your Mac OS X version is too old. See:${tty_underline}https://github.com/mistydemeo/tigerbrew${tty_reset}
EOABORT
)"elif version_lt "$macos_version" "10.9"; thenabort "Your OS X version is too old"elif version_gt "$macos_version" "$MACOS_LATEST_SUPPORTED" || \version_lt "$macos_version" "$MACOS_OLDEST_SUPPORTED"; thenwho="We"what=""if version_gt "$macos_version" "$MACOS_LATEST_SUPPORTED"; thenwhat="pre-release version"elsewho+=" (and Apple)"what="old version"fiohai "You are using macOS ${macos_version}."ohai "${who} do not provide support for this ${what}."echo "$(cat <<EOS
This installation may not succeed.
After installation, you will encounter build failures with some formulae.
Please create pull requests instead of asking for help on Homebrew\'s GitHub,
Discourse, Twitter or IRC. You are responsible for resolving any issues you
experience while you are running this ${what}.
EOS
)
"fi
fiohai "This script will install:"
echo "${HOMEBREW_PREFIX}/bin/brew"
echo "${HOMEBREW_PREFIX}/share/doc/homebrew"
echo "${HOMEBREW_PREFIX}/share/man/man1/brew.1"
echo "${HOMEBREW_PREFIX}/share/zsh/site-functions/_brew"
echo "${HOMEBREW_PREFIX}/etc/bash_completion.d/brew"
echo "${HOMEBREW_REPOSITORY}"# Keep relatively in sync with
# https://github.com/Homebrew/brew/blob/master/Library/Homebrew/keg.rb
directories=(bin etc include lib sbin share opt varFrameworksetc/bash_completion.d lib/pkgconfigshare/aclocal share/doc share/info share/locale share/manshare/man/man1 share/man/man2 share/man/man3 share/man/man4share/man/man5 share/man/man6 share/man/man7 share/man/man8var/log var/homebrew var/homebrew/linkedbin/brew)
group_chmods=()
for dir in "${directories[@]}"; doif exists_but_not_writable "${HOMEBREW_PREFIX}/${dir}"; thengroup_chmods+=("${HOMEBREW_PREFIX}/${dir}")fi
done# zsh refuses to read from these directories if group writable
directories=(share/zsh share/zsh/site-functions)
zsh_dirs=()
for dir in "${directories[@]}"; dozsh_dirs+=("${HOMEBREW_PREFIX}/${dir}")
donedirectories=(bin etc include lib sbin share var optshare/zsh share/zsh/site-functionsvar/homebrew var/homebrew/linkedCellar Caskroom Homebrew Frameworks)
mkdirs=()
for dir in "${directories[@]}"; doif ! [[ -d "${HOMEBREW_PREFIX}/${dir}" ]]; thenmkdirs+=("${HOMEBREW_PREFIX}/${dir}")fi
doneuser_chmods=()
if [[ "${#zsh_dirs[@]}" -gt 0 ]]; thenfor dir in "${zsh_dirs[@]}"; doif user_only_chmod "${dir}"; thenuser_chmods+=("${dir}")fidone
fichmods=()
if [[ "${#group_chmods[@]}" -gt 0 ]]; thenchmods+=("${group_chmods[@]}")
fi
if [[ "${#user_chmods[@]}" -gt 0 ]]; thenchmods+=("${user_chmods[@]}")
fichowns=()
chgrps=()
if [[ "${#chmods[@]}" -gt 0 ]]; thenfor dir in "${chmods[@]}"; doif file_not_owned "${dir}"; thenchowns+=("${dir}")fiif file_not_grpowned "${dir}"; thenchgrps+=("${dir}")fidone
fiif [[ "${#group_chmods[@]}" -gt 0 ]]; thenohai "The following existing directories will be made group writable:"printf "%s\n" "${group_chmods[@]}"
fi
if [[ "${#user_chmods[@]}" -gt 0 ]]; thenohai "The following existing directories will be made writable by user only:"printf "%s\n" "${user_chmods[@]}"
fi
if [[ "${#chowns[@]}" -gt 0 ]]; thenohai "The following existing directories will have their owner set to ${tty_underline}${USER}${tty_reset}:"printf "%s\n" "${chowns[@]}"
fi
if [[ "${#chgrps[@]}" -gt 0 ]]; thenohai "The following existing directories will have their group set to ${tty_underline}${GROUP}${tty_reset}:"printf "%s\n" "${chgrps[@]}"
fi
if [[ "${#mkdirs[@]}" -gt 0 ]]; thenohai "The following new directories will be created:"printf "%s\n" "${mkdirs[@]}"
fiif should_install_command_line_tools; thenohai "The Xcode Command Line Tools will be installed."
fiif [[ -t 0 && -z "${CI-}" ]]; thenwait_for_user
fiif [[ -d "${HOMEBREW_PREFIX}" ]]; thenif [[ "${#chmods[@]}" -gt 0 ]]; thenexecute_sudo "/bin/chmod" "u+rwx" "${chmods[@]}"fiif [[ "${#group_chmods[@]}" -gt 0 ]]; thenexecute_sudo "/bin/chmod" "g+rwx" "${group_chmods[@]}"fiif [[ "${#user_chmods[@]}" -gt 0 ]]; thenexecute_sudo "/bin/chmod" "755" "${user_chmods[@]}"fiif [[ "${#chowns[@]}" -gt 0 ]]; thenexecute_sudo "$CHOWN" "$USER" "${chowns[@]}"fiif [[ "${#chgrps[@]}" -gt 0 ]]; thenexecute_sudo "$CHGRP" "$GROUP" "${chgrps[@]}"fi
elseexecute_sudo "/bin/mkdir" "-p" "${HOMEBREW_PREFIX}"if [[ -z "${HOMEBREW_ON_LINUX-}" ]]; thenexecute_sudo "$CHOWN" "root:wheel" "${HOMEBREW_PREFIX}"elseexecute_sudo "$CHOWN" "$USER:$GROUP" "${HOMEBREW_PREFIX}"fi
fiif [[ "${#mkdirs[@]}" -gt 0 ]]; thenexecute_sudo "/bin/mkdir" "-p" "${mkdirs[@]}"execute_sudo "/bin/chmod" "g+rwx" "${mkdirs[@]}"execute_sudo "$CHOWN" "$USER" "${mkdirs[@]}"execute_sudo "$CHGRP" "$GROUP" "${mkdirs[@]}"
fiif ! [[ -d "${HOMEBREW_CACHE}" ]]; thenif [[ -z "${HOMEBREW_ON_LINUX-}" ]]; thenexecute_sudo "/bin/mkdir" "-p" "${HOMEBREW_CACHE}"elseexecute "/bin/mkdir" "-p" "${HOMEBREW_CACHE}"fi
fi
if exists_but_not_writable "${HOMEBREW_CACHE}"; thenexecute_sudo "/bin/chmod" "g+rwx" "${HOMEBREW_CACHE}"
fi
if file_not_owned "${HOMEBREW_CACHE}"; thenexecute_sudo "$CHOWN" "$USER" "${HOMEBREW_CACHE}"
fi
if file_not_grpowned "${HOMEBREW_CACHE}"; thenexecute_sudo "$CHGRP" "$GROUP" "${HOMEBREW_CACHE}"
fi
if [[ -d "${HOMEBREW_CACHE}" ]]; thenexecute "$TOUCH" "${HOMEBREW_CACHE}/.cleaned"
fiif should_install_command_line_tools && version_ge "$macos_version" "10.13"; thenohai "Searching online for the Command Line Tools"# This temporary file prompts the 'softwareupdate' utility to list the Command Line Toolsclt_placeholder="/tmp/.com.apple.dt.CommandLineTools.installondemand.in-progress"execute_sudo "$TOUCH" "$clt_placeholder"clt_label_command="/usr/sbin/softwareupdate -l |grep -B 1 -E 'Command Line Tools' |awk -F'*' '/^ *\\*/ {print \$2}' |sed -e 's/^ *Label: //' -e 's/^ *//' |sort -V |tail -n1"clt_label="$(chomp "$(/bin/bash -c "$clt_label_command")")"if [[ -n "$clt_label" ]]; thenohai "Installing $clt_label"execute_sudo "/usr/sbin/softwareupdate" "-i" "$clt_label"execute_sudo "/bin/rm" "-f" "$clt_placeholder"execute_sudo "/usr/bin/xcode-select" "--switch" "/Library/Developer/CommandLineTools"fi
fi# Headless install may have failed, so fallback to original 'xcode-select' method
if should_install_command_line_tools && test -t 0; thenohai "Installing the Command Line Tools (expect a GUI popup):"execute_sudo "/usr/bin/xcode-select" "--install"echo "Press any key when the installation has completed."getcexecute_sudo "/usr/bin/xcode-select" "--switch" "/Library/Developer/CommandLineTools"
fiif [[ -z "${HOMEBREW_ON_LINUX-}" ]] && ! output="$(/usr/bin/xcrun clang 2>&1)" && [[ "$output" == *"license"* ]]; thenabort "$(cat <<EOABORT
You have not agreed to the Xcode license.
Before running the installer again please agree to the license by opening
Xcode.app or running:sudo xcodebuild -license
EOABORT
)"
fiohai "Downloading and installing Homebrew..."
(cd "${HOMEBREW_REPOSITORY}" >/dev/null || return# we do it in four steps to avoid merge errors when reinstallingexecute "git" "init" "-q"# "git remote add" will fail if the remote is defined in the global configexecute "git" "config" "remote.origin.url" "${BREW_REPO}"execute "git" "config" "remote.origin.fetch" "+refs/heads/*:refs/remotes/origin/*"# ensure we don't munge line endings on checkoutexecute "git" "config" "core.autocrlf" "false"execute "git" "fetch" "origin" "--force"execute "git" "fetch" "origin" "--tags" "--force"execute "git" "reset" "--hard" "origin/master"execute "ln" "-sf" "${HOMEBREW_REPOSITORY}/bin/brew" "${HOMEBREW_PREFIX}/bin/brew"execute "${HOMEBREW_PREFIX}/bin/brew" "update" "--force"
) || exit 1if [[ ":${PATH}:" != *":${HOMEBREW_PREFIX}/bin:"* ]]; thenwarn "${HOMEBREW_PREFIX}/bin is not in your PATH."
fiohai "Installation successful!"
echo# Use the shell's audible bell.
if [[ -t 1 ]]; thenprintf "\a"
fi# Use an extra newline and bold to avoid this being missed.
ohai "Homebrew has enabled anonymous aggregate formulae and cask analytics."
echo "$(cat <<EOS
${tty_bold}Read the analytics documentation (and how to opt-out) here:${tty_underline}https://docs.brew.sh/Analytics${tty_reset}
No analytics data has been sent yet (or will be during this \`install\` run).
EOS
)
"ohai "Homebrew is run entirely by unpaid volunteers. Please consider donating:"
echo "$(cat <<EOS${tty_underline}https://github.com/Homebrew/brew#donations${tty_reset}
EOS
)
"(cd "${HOMEBREW_REPOSITORY}" >/dev/null || returnexecute "git" "config" "--replace-all" "homebrew.analyticsmessage" "true"execute "git" "config" "--replace-all" "homebrew.caskanalyticsmessage" "true"
) || exit 1ohai "Next steps:"
echo "- Run \`brew help\` to get started"
echo "- Further documentation: "
echo "    ${tty_underline}https://docs.brew.sh${tty_reset}"if [[ -n "${HOMEBREW_ON_LINUX-}" ]]; thencase "$SHELL" in*/bash*)if [[ -r "$HOME/.bash_profile" ]]; thenshell_profile="$HOME/.bash_profile"elseshell_profile="$HOME/.profile"fi;;*/zsh*)shell_profile="$HOME/.zprofile";;*)shell_profile="$HOME/.profile";;esacecho "- Install the Homebrew dependencies if you have sudo access:"if [[ $(command -v apt-get) ]]; thenecho "    sudo apt-get install build-essential"elif [[ $(command -v yum) ]]; thenecho "    sudo yum groupinstall 'Development Tools'"elif [[ $(command -v pacman) ]]; thenecho "    sudo pacman -S base-devel"elif [[ $(command -v apk) ]]; thenecho "    sudo apk add build-base"ficat <<EOSSee ${tty_underline}https://docs.brew.sh/linux${tty_reset} for more information
- Add Homebrew to your ${tty_bold}PATH${tty_reset} in ${tty_underline}${shell_profile}${tty_reset}:echo 'eval \$(${HOMEBREW_PREFIX}/bin/brew shellenv)' >> ${shell_profile}eval \$(${HOMEBREW_PREFIX}/bin/brew shellenv)
- We recommend that you install GCC:brew install gccEOS
fi

运行脚本:
 

// 检查权限 -rwxr-xr-x
ls -l brew_install.sh
// 添加权限
chmod +x brew_install.sh
// 运行脚本
./brew_install.sh
// 检查
cat brew_install.sh

参考:
mac系统安装homebrew - 简书

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/bicheng/39494.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Java--Map集合

Map 映射(map)是存储键和值间关联(即&#xff0c;键值对)的对象。给定一个键&#xff0c;可以找到其值。键和值都是对象。键必须唯一&#xff0c;但是值可以重复。 支持映射的接口 接 口 描 述 Map 将唯一键映射到值 NavigableMap 扩展SortedMap接口&#xff0c;以处理…

yarn的安装与配置(秒懂yarn用法)

Yarn 是一个快速、可靠和安全的 JavaScript 包管理工具。下面是关于在 Windows 上安装和配置 Yarn 的步骤&#xff0c;以及一些基本的用法介绍。 ### 一、安装 Yarn #### 1. 通过安装 Node.js 和 npm 安装 Yarn Yarn 依赖于 Node.js 和 npm&#xff0c;因此首先需要安装 Nod…

Spring Boot与Redis的缓存一致性问题

Spring Boot与Redis的缓存一致性问题 大家好&#xff0c;我是免费搭建查券返利机器人省钱赚佣金就用微赚淘客系统3.0的小编&#xff0c;也是冬天不穿秋裤&#xff0c;天冷也要风度的程序猿&#xff01;今天我们来探讨一下在Spring Boot中使用Redis时&#xff0c;如何处理缓存一…

使用PID算法实现DAC模拟量输出的快速调节

目录 概述 1 系统框架和算法 1.1 框架结构介绍 1.2 PID算法实现 1.2.1 理论介绍 1.2.2 离散化位置式PID 1.2.3 位置式PID算法 2 STM32Cube 配置项目 2.1 配置参数 2.2 GENERATE项目 3 功能实现 3.1 ADC采样数据功能 3.2 DAC数据转换 3.3 PID相关的调制函数 4 …

基于YOLOv10深度学习的CT扫描图像肾结石智能检测系统【python源码+Pyqt5界面+数据集+训练代码】深度学习实战、目标检测

《博主简介》 小伙伴们好&#xff0c;我是阿旭。专注于人工智能、AIGC、python、计算机视觉相关分享研究。 ✌更多学习资源&#xff0c;可关注公-仲-hao:【阿旭算法与机器学习】&#xff0c;共同学习交流~ &#x1f44d;感谢小伙伴们点赞、关注&#xff01; 《------往期经典推…

第10天:字典和集合任务

学习内容&#xff1a; 字典的创建和操作集合的创建和操作 字典&#xff08;Dictionary&#xff09; 字典的创建 # 创建一个空字典 my_dict {}# 创建一个带有初始值的字典 my_dict {"name": "Alice", "age": 25, "city": "N…

【Python】已解决:ModuleNotFoundError: No module named ‘pyhanlp’

文章目录 一、分析问题背景二、可能出错的原因三、错误代码示例五、注意事项 已解决&#xff1a;ModuleNotFoundError: No module named ‘pyhanlp’ 一、分析问题背景 在使用Python进行自然语言处理时&#xff0c;有时我们可能会用到pyhanlp这个库&#xff0c;它是一个基于J…

【JVM】Java虚拟机运行时数据分区介绍

JVM 分区&#xff08;运行时数据区域&#xff09; 文章目录 JVM 分区&#xff08;运行时数据区域&#xff09;前言1. 程序计数器2. Java 虚拟机栈3. 本地方法栈4. Java 堆5. 方法区6. 运行时常量池7. 直接内存 前言 之前在说多线程的时候&#xff0c;提到了JVM虚拟机的分区内存…

HarmonyOS APP应用开发项目- MCA助手(Day01持续更新中~)

简言&#xff1a; gitee地址&#xff1a;https://gitee.com/whltaoin_admin/money-controller-app.git端云一体化开发在线文档&#xff1a;https://developer.huawei.com/consumer/cn/doc/harmonyos-guides-V5/agc-harmonyos-clouddev-view-0000001700053733-V5 注&#xff1…

MySQL 9.0 悄悄上线,支持面向AI的向量数据库

MySQL狂热粉丝群已经发现MySQL官网上MySQL9.0这两天悄然上线&#xff0c;已经可以下载体验了&#xff0c;目前被定义为创新版本&#xff08;Innovation&#xff09;。 下载地址&#xff1a;https://dev.mysql.com/downloads/mysql/ 支持主流的操作系统&#xff0c;安装后可以直…

DDD学习笔记六

基类与继承 领域模型中何时发掘和应用基类与继承&#xff1a; 1&#xff09;基类概念必须是通用语言的一部分&#xff0c;并且对应领域中的一个抽象概念。 2&#xff09;这个概念必须被进一步细化&#xff0c;才能具备实际业务含义。 3&#xff09;基类概念被细化的子类存在着不…

QT 线程计时器

qt自带的计时器QTimer是与界面主线程绑定在一起的&#xff0c;如果操作界面有可能会影响计时器的执行&#xff0c;所以查找一些资料写了一个长期运行的线程计时器。 1.线程类的头文件 #ifndef WORKTH_H #define WORKTH_H#include <QDebug> #include <QThread> #i…

分布式服务——注册中心

介绍 想象一下&#xff0c;一个繁忙的周末&#xff0c;阳光明媚&#xff0c;公园里的孩子们在尽情玩耍&#xff0c;大人们则坐在长椅上享受着难得的闲暇时光。突然&#xff0c;一个小女孩跑到一位陌生的先生面前&#xff0c;甜甜地说&#xff1a;“叔叔&#xff0c;你能不能帮…

论坛入门与提升

前言 明确设计思路&#xff0c;精准定位问题&#xff0c;对于我们后期理解迭代工程有很大的帮助。 这就是我们常说的40%设计&#xff0c;20%编写和剩下的40%时间进行调试优化。 今天为大家带来的是通过对论坛的深入了解&#xff0c;来解决大家遇到问题时的迷茫&#xff0c;合…

基于字符和词特征融合的恶意域名检测

传统的恶意域名检测方法在检测由域名生成算法&#xff08;DGA&#xff09;随机生成的恶意域名方面性能不佳&#xff0c;尤其是对于那些由随机单词组成的域名。文章提出了一种新的检测算法&#xff0c;通过融合字符和词特征来提高对恶意域名的检测能力&#xff0c;特别是对于更具…

SpringCloud基础篇

文章目录 创建新模块拷贝yml配置文件修改配置文件的信息修改pom.xml文件启动入口拷贝相关文件接口文档配置配置启动项注册中心原理Nacos注册中心创建nacos数据库存储数据部署nacos在docker容器中 服务注册引入依赖配置Nacos地址启动 服务发现(调用)引入依赖配置nacos地址发现并…

文章解读与仿真程序复现思路——电力系统自动化EI\CSCD\北大核心《面向电网调峰的电动汽车聚合商多层级实时控制策略》

本专栏栏目提供文章与程序复现思路&#xff0c;具体已有的论文与论文源程序可翻阅本博主免费的专栏栏目《论文与完整程序》 论文与完整源程序_电网论文源程序的博客-CSDN博客https://blog.csdn.net/liang674027206/category_12531414.html 电网论文源程序-CSDN博客电网论文源…

通过docker overlay2 目录名查找占用磁盘空间最大的容器名和容器ID

有时候经常会有个别容器占用磁盘空间特别大&#xff0c; 这个时候就需要通过docker overlay2 目录名查找占用磁盘空间最大的容器名和容器ID&#xff1a; 1、 首先进入到 /var/lib/docker/overlay2 目录下,查看谁占用的较多 [rootPPS-97-8-ALI-HD1H overlay2]# cd /var/lib/doc…

Linux基础 - MariaDB 数据库管理系统

目录 零. 简介 一. 安装 二. 基本使用 1. 设置root密码 2. 创建库 3. 创建表 4.添加数据 5. 查看数据 三. 管理表单及数据 四. 数据库的备份及恢复 零. 简介 MariaDB 是一种流行的开源数据库管理系统&#xff0c;它是 MySQL 的一个分支。 MariaDB 保留了与 MySQL 的…

CesiumJS【Basic】- #045 绘制流动线(Entity方式)- 需要自定义着色器

flow 文章目录 绘制流动线(Entity方式)- 需要自定义着色器1 目标2 代码2.1 main.ts绘制流动线(Entity方式)- 需要自定义着色器 1 目标 使用Entity方式绘制流动线 2 代码 2.1 main.ts import * as Cesium from cesium;const viewer = new Cesium