Notice
Recent Posts
Recent Comments
준호씨의 블로그
perl - 터미널에서 module 설치 여부 확인 하기 본문
반응형
모듈이 설치 되어 있지 않은 경우
$ perl -e 'use Redis'
Can't locate Redis.pm in @INC (you may need to install the Redis module) (@INC contains: /usr/local/lib/perl5/site_perl/5.18.2/i686-linux /usr/local/lib/perl5/site_perl/5.18.2 /usr/local/lib/perl5/5.18.2/i686-linux /usr/local/lib/perl5/5.18.2 .) at -e line 1.
BEGIN failed--compilation aborted at -e line 1.
모듈이 잘 설치 되어 있는 경우
$ perl -e 'use Redis'
아무 내용이 출력 되지 않는다.
반응형
'개발이야기' 카테고리의 다른 글
perl - decode json (0) | 2017.05.22 |
---|---|
perl - HTTP::Tiny 로 http GET request 날리기 (0) | 2017.05.22 |
perl - encode json (0) | 2017.05.21 |
How to subtract two files using grep (0) | 2017.05.18 |
python - Number to String. String-Number concatenation (0) | 2017.05.11 |
Comments