반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 생일선물
- 착한텔레콤 #스카이 #스카이15W차량용무선충전기 #차량용무선충전기 #차량용무선충전거치대 #충전거치대 #무선충전거치대 #무선충전기 #무선충전 #가성비
- 스카이핏S액티브 #무선이어폰
- #착한텔레콤 #스카이 #스카이63WPD보조배터리 #보조배터리 #고속보조배터리 #고속충전 #가성비 #PD보조배터리 #노트북보조배터리 #대용량보조배터리 #2만용량삭제
- 착한텔레콤 #스카이 #스카이케어윈드100 #핸디형선풍기 #거치형선풍기 #휴대용선풍기 #무소음선풍기
- 스카이클리어S #무선미니청소기 #에어콤프레셔 #무선청소기 #차량용청소기
- 착한텔레콤 #스카이 #스카이미엔느진동클렌저 #진동클렌저 #갈바닉 #갈바닉마사지기 #클렌징폼 #블랙헤드제거 #코블랙헤드제거 #얼굴피지제거 #블로그체험단 #체험단모집 #스카이서포터즈
- 착한텔레콤 #스카이 #스카이핏ANC200 #노이즈캔슬링이어폰 #가성비이어폰 #블루투스이어폰 #무선이어폰 #체험단 #스카이서포터즈
- 스카이SV100 #전기면도기 #남자친구생일선물
- 착한텔레콤 #스카이 #스카이63W도킹PD무선보조배터리 #무선보조배터리 #도킹보조배터리 #거치대형보조배터리 #고속충전 #무선충전 #가성비
- 스카이비트 #고속충전케이블 #C타입케이블
- 전동면도기
- cli.init
- 스카이필X20 #보조배터리 #PD충전
- MySQL #PostgreSQL
- 면도기
- 착한텔레콤 #스카이 #스카이핏프로 #완전무선이어폰 #무선블루투스이어폰 #블루투스무선이어폰 #완전무선블루투스이어폰
- react-native
- 남자 면도기
Archives
- Today
- Total
hun1541
zsh: parse error near `)' 에러 해결 방법 본문
반응형
MAC 에서 brew 설치 하기 위해 아래와 같은 명령어를 입력 합니다.
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
설치 이후 아래 와 같은 메시지가 노출 됩니다.
==> Checking for `sudo` access (which may request your password)...
Password:
==> This script will install:
/opt/homebrew/bin/brew
/opt/homebrew/share/doc/homebrew
/opt/homebrew/share/man/man1/brew.1
/opt/homebrew/share/zsh/site-functions/_brew
/opt/homebrew/etc/bash_completion.d/brew
/opt/homebrew
Press RETURN/ENTER to continue or any other key to abort:
==> /usr/bin/sudo /usr/sbin/chown -R jhjang:admin /opt/homebrew
==> Downloading and installing Homebrew...
HEAD is now at 8ffac3e2a Merge pull request #15684 from carlocab/rpath-dupes
Warning: /opt/homebrew/bin is not in your PATH.
Instructions on how to configure your shell for Homebrew
can be found in the 'Next steps' section below.
==> Installation successful!
==> Homebrew has enabled anonymous aggregate formulae and cask analytics.
Read the analytics documentation (and how to opt-out) here:
https://docs.brew.sh/Analytics
No analytics data has been sent yet (nor will any be during this install run).
==> Homebrew is run entirely by unpaid volunteers. Please consider donating:
https://github.com/Homebrew/brew#donations
==> Next steps:
- Run these two commands in your terminal to add Homebrew to your PATH:
(echo; echo 'eval "$(/opt/homebrew/bin/brew shellenv)"') >> /Users/hun1541/.zprofile
eval "$(/opt/homebrew/bin/brew shellenv)"
- Run brew help to get started
- Further documentation:
https://docs.brew.sh
Next steps...
저기 나와있는데로 명령어를 쳐도 zsh: parse error near `)' 와 같은 메시지가 노출 됩니다.
가만히 보니 괄호가 하나더 있네요...
echo 'eval "$(/opt/homebrew/bin/brew shellenv)"') >> /Users/jhjang/.zprofile
제거 후 다시 명령어를 실행 합니다.
echo 'eval "$(/opt/homebrew/bin/brew shellenv)"' >> /Users/jhjang/.zprofile
eval "$(/opt/homebrew/bin/brew shellenv)"
버전 확인을 해봅니다.
brew -v
Homebrew 4.0.28
반응형
'IT관련' 카테고리의 다른 글
[RN] cli.init is not a function (2) | 2023.07.12 |
---|---|
[Android] 구글이 채택한 Kotlin DSL (1) | 2023.07.03 |
[PWA] Progressive Web Application? (3) | 2023.06.29 |
[AI] ‘AI 조련사’ 프롬프트 엔지니어? (3) | 2023.06.26 |
[12Factor] The Twelve-Factor Application (1) | 2023.06.09 |