-
[Linux] - Python Module 설치 확인 방법개발/Linux 2022. 8. 11. 22:51
Module 여부 확인 방법
1. Module이 설치되어 있는 경우
$ python -c "import math" $ echo $? 0 # math module exists in system
2. Module이 설치되어 있는 경우
$ python -c "import numpy" Traceback (most recent call last): File "<string>", line 1, in <module> ImportError: No module named numpy $ echo $? 1 # numpy module does not exist in system
Reference
'개발 > Linux' 카테고리의 다른 글
[Linux] - Server Connect Check (0) 2022.08.21 [Linux] - Kafka 실행 시 exec: java: not found (0) 2022.08.18 [Linux] - su: Authentication failure (0) 2022.08.18