NumPy("넘파이"라 읽는다)는 행렬이나 일반적으로 대규모 다차원 배열을 쉽게 처리 할 수 있도록 지원하는 파이썬의 라이브러리이다. NumPy는 데이터 구조 외에도 수치 계산을 위해 효율적으로 구현된 기능을 제공한다.
https://ko.wikipedia.org/wiki/NumPy
numpy가 없어 이와 같은 에러가 발생하면 설치하자.
$ python3 ./test.py
Traceback (most recent call last):
File "./test.py", line 7, in <module>
import numpy as np
ModuleNotFoundError: No module named 'numpy'
$ pip install numpy
Collecting numpy
Downloading numpy-1.21.3-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (15.7 MB)
|████████████████████████████████| 15.7 MB 14.1 MB/s
Installing collected packages: numpy
WARNING: The scripts f2py, f2py3 and f2py3.8 are installed in '/home/dev/.local/bin' which is not on PATH.
Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location.
Successfully installed numpy-1.21.3
$
'놀기 > 에러 잡기' 카테고리의 다른 글
error LNK2019: __imp__accept@12_ff_accept 함수에서 참조되는 확인할 수 없는 외부 기호 (0) | 2023.02.04 |
---|---|
wpcap.dll이(가) 없어 코드 실행을 진행할 수 없습니다. (0) | 2022.07.13 |
PyCryptodome 설치, AttributeError: module 'time' has no attribute 'clock' (0) | 2021.10.30 |
pycrypto 설치하기 (ModuleNotFoundError: No module named 'Crypto') (0) | 2021.10.30 |
ModuleNotFoundError: No module named 'pymysql' (0) | 2021.10.29 |
댓글