#Mac에서 Laravel의 환경 구축을 한 건
Mac에서 Laravel의 환경 구축을 한 건
Mac에서 Laravel 환경을 구축 할 때의 내용을 요약합니다.
목차
구축 절차
운영 환경
OS : macOS Mojave 10.14.6
HOMEBREW_VERSION: 2.2.17
Composer version 1.10.6
Laravel Installer 2.3.0
PHP : 7.2.31
구축 절차
homebrew 설치
Homebrew는 mac의 패키지 관리자입니다.
비밀번호를 묻는 경우 Mac 로그인 비밀번호를 적절히 입력하십시오.
$ /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
설치가 완료되면 업데이트를 완료하십시오.
$ brew upgrade
composer 설치
brew install composer
설치가 완료되면 PATH를 추가하여 설치되었는지 확인하십시오.
PATH 추가 및 버전 확인$ echo export PATH=\"$HOME/.composer/vendor/bin:\$PATH\" >> ~/.bash_profile
$ source .bash_profile
$ composer -V
Composer version 1.10.6 2020-05-06 10:28:10
php 설치
PHP 버전 확인
$ php -v
PHP 7.1.23 (cli) (built: Feb 22 2019 22:19:32) ( NTS )
주의점
7.1 시스템에서 Laravel new를 실행하면 다음 오류가 발생하여 7.2 이상을 설치합니다.
Your requirements could not be resolved to an installable set of packages.
Problem 1
- This package requires php ^7.2.5 but your PHP version (7.1.23) does not satisfy that requirement.
7.2 시스템 설치
brew install [email protected]
PATH 추가 및 버전 확인$ echo 'export PATH="/usr/local/opt/[email protected]/bin:$PATH"' >> ~/.bash_profile
$ echo 'export PATH="/usr/local/opt/[email protected]/sbin:$PATH"' >> ~/.bash_profile
$ source ~/.bash_profile
$ php -v
PHP 7.2.31 (cli) (built: May 14 2020 10:55:21) ( NTS )
laravel 설치
laravel 설치$ composer global require "laravel/installer"
주의점
웹 사이트에서 다음 명령을 작성했지만이 명령은 오류가 발생합니다. 자세한 내용은 여기을 참조하십시오.
잘못$ composer global require “laravel/install”
동작 확인
마지막으로 앱을 만들 디렉토리로 이동하여 실행
$ laravel new dg_laravel_test
서버 시작
$ php artisan serve
Laravel development server started: http://127.0.0.1:8000
[Tue May 19 16:52:04 2020] 127.0.0.1:56892 [200]: /favicon.ico
브라우저에서 http://127.0.0.1:8000
에 액세스
아래 화면이 나오면 성공
결론
이번 건에서 다음을 배웠습니다.
1. Mac OS에서 Laravel 환경 구축
Reference
이 문제에 관하여(#Mac에서 Laravel의 환경 구축을 한 건), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/j-sunaga/items/b69ed2bfddee9e709be2
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
$ /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
$ brew upgrade
brew install composer
$ echo export PATH=\"$HOME/.composer/vendor/bin:\$PATH\" >> ~/.bash_profile
$ source .bash_profile
$ composer -V
Composer version 1.10.6 2020-05-06 10:28:10
$ php -v
PHP 7.1.23 (cli) (built: Feb 22 2019 22:19:32) ( NTS )
Your requirements could not be resolved to an installable set of packages.
Problem 1
- This package requires php ^7.2.5 but your PHP version (7.1.23) does not satisfy that requirement.
brew install [email protected]
$ echo 'export PATH="/usr/local/opt/[email protected]/bin:$PATH"' >> ~/.bash_profile
$ echo 'export PATH="/usr/local/opt/[email protected]/sbin:$PATH"' >> ~/.bash_profile
$ source ~/.bash_profile
$ php -v
PHP 7.2.31 (cli) (built: May 14 2020 10:55:21) ( NTS )
$ composer global require "laravel/installer"
$ composer global require “laravel/install”
$ laravel new dg_laravel_test
$ php artisan serve
Laravel development server started: http://127.0.0.1:8000
[Tue May 19 16:52:04 2020] 127.0.0.1:56892 [200]: /favicon.ico
Reference
이 문제에 관하여(#Mac에서 Laravel의 환경 구축을 한 건), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/j-sunaga/items/b69ed2bfddee9e709be2텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)