목록error (4)
준호씨의 블로그
gitgraph.js라는 녀석을 설치해 보려고 따라 하던 도중 아래 커맨드를 실행시켰는데 오류가 발생했습니다. $ yarn run lerna bootstrap 처음에는 lerna가 설치되어 있지 않다고 해서 lerna를 먼저 설치해 줬고 다시 해 보니 "gyp: No Xcode or CLT version detected!"오류가 발생했습니다. 보통 xcode 관련 파일들이 필요한 경우 아래 명령어로 설치할 수 있는데요. $ xcode-select --install 실행해 보니 이미 설치되어 있다고 나옵니다. $ xcode-select --install xcode-select: error: command line tools are already installed, use "Software Update" t..
Maybe you could see below error message box when you start MS Word every time. And you can see below error message when you quit MS Word You can't quit when you click "Yes" button. You can see below error message. You may retry quit If you click "Don't Save" and click "Don's Save" again. You could quit MS Word. But it will happen again and again. Here is a solution. Go to "~/Library/Group Contai..
You can see stderr "No such file or directory" when you 'cat' none exists file $ cat nonexistent_file cat: nonexistent_file: No such file or directory If you want to hide stderr, attach 2>/dev/null after command cat nonexistent_file 2>/dev/null Tip 'grep' command has '-s' option to hide error message about nonexistent or unreadable files. -s, --no-messages Suppress error messages about nonexiste..
맥북에서 perl 환경 프로젝트를 돌리려고 하는데 갑자기 아래와 같은 오류가 나타났다. Invalid version format (version required) at /Library/Perl/5.18/Module/Runtime.pm line 386. BEGIN failed 는 use Moose; 하는 부분 이었다. Moose 와 관련된 문제인거 같긴 한데 잘 모르겠다. 아래 포스팅을 보니 Moose 를 업그레이드 하면 해결 될거라고 한다. http://blogs.perl.org/users/ovid/2014/02/moose-dying-with-invalid-version-format-version-required.html#comments 일단 쉽게 에러 재현 하는 방법 $ perl -MMoose -e 1..