Shopify-cCLI에서 PHP를 사용하는 응용 개발은 MacOS에서 진행됩니다(시작 편)

1693 단어 PHPShopifytech
MacOS(M1)에서 처음 설정된 PHP7입니다.3을 사용하여 다음 명령을 입력하는 동안 오류가 발생했습니다.해결됐으니까 그 방법을 남겨둬.
shopify php create
오류 내용
7.3.24-(to be removed in future macos) is not a valid semver version (http://semver.org) (argumenterror)

솔루션 [PHP 8.0 설치]


먼저 현재 PHP 버전을 확인합니다.
php -v
필자가 구매한 MacOS(M1)에서 처음 설정한 것은 PHP7이다.3.24에서 경고를 받았다.
WARNING: PHP is not recommended
PHP is included in macOS for compatibility with legacy software.
Future versions of macOS will not include PHP.
PHP 7.3.24-(to be removed in future macOS) (cli) (built: Aug 26 2021 15:36:17) ( NTS )
Copyright (c) 1997-2018 The PHP Group
Zend Engine v3.3.24, Copyright (c) 1998-2018 Zend Technologies

PHP8.설치


다음 명령을 실행합니다.
brew install [email protected]

.zshrc PaTH 통과


vi ~/.zshrc
a키를 눌러 편집 모드로 전환한 후 아래 코드를 입력하세요.
export PATH=$PATH:/usr/local/opt/[email protected]/bin:/usr/local/opt/[email protected]/sbin
esc키를 누르면 편집을 끝내고 :wq에 저장하고 끝냅니다.

PHP 버전 확인


php -v
결과
PHP 8.0.10 (cli) (built: Aug 26 2021 15:36:17) ( NTS )
Copyright (c) The PHP Group
Zend Engine v4.0.10, Copyright (c) Zend Technologies
    with Zend OPcache v8.0.10, Copyright (c), by Zend Technologies
상기 조작을 완료한 후 응용 프로그램을 제작한 후 정상적으로 운행한다.
shopify php create

좋은 웹페이지 즐겨찾기