-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathChapter3.txt
More file actions
51 lines (34 loc) · 1.05 KB
/
Chapter3.txt
File metadata and controls
51 lines (34 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
Chapter3
- 로제타 2 설치
sudo softwareupdate --install-rosetta --agree-to-license
- Update your path 관련 코드
export PATH="$PATH:[PATH_OF_FLUTTER_GIT_DIRECTORY]/bin"
- Flutter 경로지정
export PATH="$PATH:$HOME/flutter/bin"
- Command Line Tools 설치
xcode-select --install
- Homebrew 설치
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
- rbenv 설치
brew install rbenv
- rbenv 관련 설정을 ~/.zshrc에 추가
첫 번째 명령어
export PATH="$HOME/.rbenv/bin:$PATH"
두 번째 명령어
eval "$(rbenv init - zsh)"
- 루비 버전 검색
rbenv install -l
- 루비 설치 명령어
rbenv install 3.2.2
- nano 에디터 실행
nano ~/.zshrc
- nano 에디터 환경변수 설명 명령어
eval "$(rbenv init -)"
- .zshrc 파일 새로고침
source ~/.zshrc
- CocoaPods 설치
sudo gem install cocoapods
- ActiveSupport를 삭제
sudo gem uninstall activesupport
- 낮은 버전의 ActiveSupport를 설치
sudo gem install activesupport -v 7.0.8