windows python 3.7 설치 numpy 문제 해결 방법

저 는 win 7 시스템 입 니 다.python 홈 페이지 에 python 3.7 을 다운로드 하여 설치 합 니 다.
CMD  #명령 창 열기

pip install numpy # cmd   
힌트 는 c++14.0 이 필요 합 니 다.
해결 방법:
1,https://www.lfd.uci.edu/~gohlke/pythonlibs/#wordcloud 진입 
저 는 win 10 시스템 입 니 다.python 홈 페이지 에 python 3.7 을 다운로드 하여 설치 합 니 다.
CMD  #명령 창 열기

pip install numpy # cmd   
힌트 는 c++14.0 이 필요 합 니 다.
해결 방법:
1,https://www.lfd.uci.edu/~gohlke/pythonlibs/#wordcloud 진입

내 컴퓨터 와 설 치 된 python 에 따라 마지막 하 나 를 다운로드 하여 python 디 렉 터 리 에 저장 한 다음 cmd 가 이 디 렉 터 리 에 들 어 갑 니 다.
pip install numpy‑1.14.1+mkl‑cp 37‑cp37m‑win 입력amd64.whl   ...하면 된다
C:\Users\12345\AppData\Local\Programs\Python\Python37\Scripts>pip install numpy-1.14.3+mkl-cp37-cp37m-win_amd64.whl Processing c:\users\12345\appdata\local\programs\python\python37\scriptsumpy-1.14.3+mkl-cp37-cp37m-win_amd64.whl Installing collected packages: numpy Successfully installed numpy-1.14.3+mkl
  같은 pandas 를 설치 하 는 방법 도 마찬가지 입 니 다.
다운로드 후 복사\\Users\12345\AppData\\Local\Programs\\Python\\Python 37\\\Scripts>

pip install pandas-0.23.0-cp37-cp37m-win_amd64.whl
그래 픽 인터페이스 설치 seaborn 도 마찬가지 입 니 다.

pip install seaborn-0.8.1-py2.py3-none-any.whl
그러나 matplotlib 를 설치 하 는 중 오류 가 발생 했 습 니 다.Microsoft Visual C+14.0 이 필요 합 니 다.Get it with"Microsoft Visual C++Build Tools":http://landinghub.visualstudio.com/visual-cpp-build-tools
해결 방법 은 다운로드 입 니 다.
http://1445568.ch1.data.tv002.com:443/down/fd9282f666dce22ef8848171236f456a-3287928/visualcppbuildtools_full.exe?cts=f-D120A234A24A43F105e1&ctp=120A234A24A43&ctt=1528324956&limit=1&spd=150000&ctk=17728aba100ad4e1159d27227523f6da&chk=fd9282f666dce22ef8848171236f456a-3287928&mtd=1
다운로드 완료 후 다시 pip install matplotlib-2.2.2-cp37-cp37m-winamd64.whl

C:\Users\12345\AppData\Local\Programs\Python\Python37\Scripts>pip install matplotlib-2.2.2-cp37-cp37m-win_amd64.whl
Processing c:\users\12345\appdata\local\programs\python\python37\scripts\matplotlib-2.2.2-cp37-cp37m-win_amd64.whl
Requirement already satisfied: six>=1.10 in c:\users\12345\appdata\local\programs\python\python37\lib\site-packages (from matplotlib==2.2.2) (1.11.0)
Requirement already satisfied: pyparsing!=2.0.4,!=2.1.2,!=2.1.6,>=2.0.1 in c:\users\12345\appdata\local\programs\python\python37\lib\site-packages (from matplotlib==2.2.2) (2.2.0)
Requirement already satisfied: pytz in c:\users\12345\appdata\local\programs\python\python37\lib\site-packages (from matplotlib==2.2.2) (2018.4)
Requirement already satisfied: python-dateutil>=2.1 in c:\users\12345\appdata\local\programs\python\python37\lib\site-packages (from matplotlib==2.2.2) (2.7.3)
Requirement already satisfied: cycler>=0.10 in c:\users\12345\appdata\local\programs\python\python37\lib\site-packages (from matplotlib==2.2.2) (0.10.0)
Collecting kiwisolver>=1.0.1 (from matplotlib==2.2.2)
 Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ConnectTimeoutError(<pip._vendor.urllib3.connection.VerifiedHTTPSConnection object at 0x000001AEFF3E5F60>, 'Connection to 10.180.28.148 timed out. (connect timeout=15)')': /simple/kiwisolver/
 Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ConnectTimeoutError(<pip._vendor.urllib3.connection.VerifiedHTTPSConnection object at 0x000001AEFF3E5B38>, 'Connection to 10.180.28.148 timed out. (connect timeout=15)')': /simple/kiwisolver/
 Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ConnectTimeoutError(<pip._vendor.urllib3.connection.VerifiedHTTPSConnection object at 0x000001AEFF3E59E8>, 'Connection to 10.180.28.148 timed out. (connect timeout=15)')': /simple/kiwisolver/
 Retrying (Retry(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ConnectTimeoutError(<pip._vendor.urllib3.connection.VerifiedHTTPSConnection object at 0x000001AEFF407B70>, 'Connection to 10.180.28.148 timed out. (connect timeout=15)')': /simple/kiwisolver/
 Using cached https://files.pythonhosted.org/packages/31/60/494fcce70d60a598c32ee00e71542e52e27c978e5f8219fae0d4ac6e2864/kiwisolver-1.0.1.tar.gz
Requirement already satisfied: numpy>=1.7.1 in c:\users\12345\appdata\local\programs\python\python37\lib\site-packages (from matplotlib==2.2.2) (1.14.3+mkl)
Requirement already satisfied: setuptools in c:\users\12345\appdata\local\programs\python\python37\lib\site-packages (from kiwisolver>=1.0.1->matplotlib==2.2.2) (39.0.1)
Installing collected packages: kiwisolver, matplotlib
 Running setup.py install for kiwisolver ... done
Successfully installed kiwisolver-1.0.1 matplotlib-2.2.2

이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기