Python3.6_安装numpy

时间:2022-06-01 00:07:40

刚刚编辑了一次,但是犯了新手都会犯的没保存的错误,第二次编辑可能略有粗糙,如有问题欢迎指正

想用Python 画图,但是我的是vs自动安装的因此缺少许多必要的库,在安装的过程中也是遇到了诸多问题,下面就介绍一下这些库的安装。

下面四个是vs推荐我安装的库。

1. Download a dataset (using pandas)

2. Process the numeric data (using numpy)

3. Train and evaluate learners (using scikit-learn)

4. Plot and compare results (using matplotlib)

首先在安装之前请先确保环境变量已经配置:包括python.exe和pip.exe

环境变量配置方式:电脑-属性-高级系统设置-高级-环境变量-系统变量-Path。如下:

Python3.6_安装numpy

2.安装numpy

2.1安装包的下载官方地址 https://pypi.python.org/pypi/numpy

请在“Py Version”这个栏目选择适合自己版本的,我选的cp36(我用的Python3.6)

再选择合适自己系统的,我的系统是Windows 64的

2.2安装包的安装//高亮部分为安装包的名称

在cmd命令窗口输入://我的安装包放在D盘根目录下

(1)       D:

(2)       pip install numpy-1.13.3-cp36-none-win_amd64.whl

Python3.6_安装numpy

注:

(1)千万选择适合自己系统的安装包,否则会报如下错误:…is not a supported wheel on this platform.

(2)不要修改下载下来的安装包的名称,否则会报如下错误... is not a valid wheel filename.