Heim > Fragen und Antworten > Hauptteil
Ich habe MAMP mit der PHP-Version 7.4 auf meinem Mac installiert.
command which php
Zurück – /Applications/MAMP/bin/php/php7.4.21/bin/php
Ich habe PHP 8.1 mit brew installiert. Ich kommentiere ~/.bash_profile
# export PATH=/Applications/MAMP/bin/php/php7.4.21/bin:$PATH # alias mysql=/Applications/MAMP/Library/bin/mysql # export PATH="/usr/local/opt/node@13/bin:$PATH"
Aber es wird immer noch der gleiche PHP-Pfad angezeigt. Wie wechsle ich zur neu installierten PHP-Version?
P粉0205562312023-11-09 20:33:01
您必须链接您要使用的 PHP 版本。
brew unlink php
将取消当前版本 PHP 的链接。
brew link php@8.1
将链接 PHP 8.1(您需要先安装它)