분명 numpy를 설치했는데 파이썬에서 numpy를 사용하려 하면 다음과 같이 AttributeError: module 'numpy' has no attribute ... 하는 에러가 뜰 때가 있습니다.
import numpy as np
print(np.__version__)
# AttributeError: module 'numpy' has no attribute '__version__'
이는 numpy가 설치는 되었지만 시스템에서 파이썬 라이브러리로 제대로 연결이 안 되어서 그렇습니다. 이럴 경우 맥에서 homebrew를 사용할 때를 기준으로
brew link --overwrite numpy
를 실행해주면 문제가 해결됩니다.
참조한 곳: https://github.com/Homebrew/homebrew-core/issues/15698#issuecomment-315730732
'개발 > 파이썬' 카테고리의 다른 글
[파이썬] ImportError: cannot import name 'Self' from 'typing_extensions' (0) | 2024.08.21 |
---|---|
[파이썬] super().__init__() 과 super(__class__, self).__init__() 차이 (0) | 2022.08.29 |
[파이썬] 아나콘다 업데이트하기 (0) | 2018.08.17 |
[파이썬] glob - 디렉토리 내 특정 확장자 파일 모두 출력하기 (0) | 2018.04.30 |
[파이썬] os와 os.path - 디렉토리 내 파일 전부 출력하기 (0) | 2018.04.30 |