Knowledge Map
python2에서 pandas 설치시 numpy에러 본문
맥프레 macOS High Sierra 에는 python 2.7.10이 기본적으로 설치가 되어 있다.
여기서 pandas를 설치하려고 하면 다음과 같이 에러가 뜬다.
EPRECATION: Uninstalling a distutils installed project (numpy) has been deprecated and will be removed in a future version. This is due to the fact that uninstalling a distutils project will only partially uninstall the project.
Uninstalling numpy-1.8.0rc1:
그래서 numpy를 설치하려고 하면 아래와 같이 뜬다.
Requirement already satisfied:
이것을 해결하는 방법은 numpy-1.8.0rc1을 제거하거나 이것을 업그레이드 하면 된다.
하지만 sudo pip install numpy를 해도 이미 만족한다는 메세지가 뜰뿐 변화가 없다.
그럴때는 아래와 같이 하면 제대로 진행된다.
pip install --user 'numpy >= 1.13'
'PYTHON' 카테고리의 다른 글
python3 bytes class => json (0) | 2018.01.16 |
---|---|
파이썬 에러 처리 (0) | 2018.01.12 |
파이썬2 한글 인코딩 문제 (0) | 2016.11.01 |
ip 확인, win 64bit 에서의 실행파일 생성, 진행막대바 생성 (0) | 2016.10.25 |
파이썬으로 이메일 보내기 (0) | 2016.10.10 |
Comments