当前位置:网站首页>Mac Brew 安装PHP
Mac Brew 安装PHP
2022-07-30 12:50:00 【-阿布-】
1. 默认镜像源安装太慢或发生包not found,第一步切换镜像源为阿里云
其他更多的源参考:Mac 下 brew 切换为国内源 - 腾讯云开发者社区-腾讯云
注意:使用了国内的源之后注意命令行的外网vpn代理就不要开启了,防止卡住
# 查看 brew.git 当前源
$ cd "$(brew --repo)" && git remote -v
origin https://github.com/Homebrew/brew.git (fetch)
origin https://github.com/Homebrew/brew.git (push)
# 查看 homebrew-core.git 当前源
$ cd "$(brew --repo homebrew/core)" && git remote -v
origin https://github.com/Homebrew/homebrew-core.git (fetch)
origin https://github.com/Homebrew/homebrew-core.git (push)
# 修改 brew.git 为阿里源
$ git -C "$(brew --repo)" remote set-url origin https://mirrors.aliyun.com/homebrew/brew.git
# 修改 homebrew-core.git 为阿里源
$ git -C "$(brew --repo homebrew/core)" remote set-url origin https://mirrors.aliyun.com/homebrew/homebrew-core.git
# zsh 替换 brew bintray 镜像
$ echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.aliyun.com/homebrew/homebrew-bottles' >> ~/.zshrc
$ source ~/.zshrc
# bash 替换 brew bintray 镜像
$ echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.aliyun.com/homebrew/homebrew-bottles' >> ~/.bash_profile
$ source ~/.bash_profile
# 刷新源
$ brew update2. 安装php
参考:macOS 使用 Homebrew 安装 PHP7.4 并替代系统自带 PHP 教程 - 知乎
# 搜索php
brew search php
# 安装php7.4
brew install [email protected]
# 在PATH中追加php
export PATH="/usr/local/opt/[email protected]/bin:$PATH"边栏推荐
- Markdown 1 - 图文音视频等
- 自从外包干了四年,基本废了...
- EasyNVS云管理平台功能重构:支持新增用户、修改信息等
- WinForm枚举容器中的控件,实现控件统一事件处理机制
- CMake library search function does not search LD_LIBRARY_PATH
- Hand tearing read-write lock performance test
- 基于卷积神经网络与双向长短时融合的锂离子电池剩余使用寿命预测
- OpenHarmony环境搭建报错: ImportError: cannot import name ‘VERSION‘ from ‘hb.__main__‘
- 解码Redis最易被忽视的CPU和内存占用高问题
- Tutorial on using the one-key upgrade function of the RTSP/Onvif video platform EasyNVR service
猜你喜欢
随机推荐
【23考研】408代码题参考模板——链表
IDEA 重复代码快速重构(抽取重复代码快捷键)
【Kaggle比赛常用trick】K折交叉验证、TTA
dolphinscheduler simple task definition and complex cross-node parameter transfer
R语言ggplot2可视化:使用ggpubr包的ggboxplot函数可视化分组箱图、使用ggpar函数改变图形化参数(ylim、修改可视化图像y轴坐标轴数值范围)
机器学习——特征选择
Greenplum 6.0有哪些不可错过的硬核升级与应用?
DeFi 巨头进军 NFT 领域 用户怎么看?
Raja Koduri澄清Arc GPU跳票传闻 AXG年底前新推四条产品线
Beijing, Shanghai and Guangzhou offline events丨The most unmissable technology gatherings at the end of the year are all gathered
奇异值分解(SVD)原理与在降维中的应用(附带例题讲解)(纯理论)
Yilian: Activating the Value Potential of Data Elements and Unleashing the Innovation Dividend of SAS SSD
CMake library search function does not search LD_LIBRARY_PATH
湖仓一体电商项目(二):项目使用技术及版本和基础环境准备
自从外包干了四年,基本废了...
智能指针实现猜想
CMake库搜索函数居然不搜索LD_LIBRARY_PATH
CV-Model【2】:MobileNet v1
维护数千规模MySQL实例,数据库灾备体系构建指南
手撕读写锁性能测试









