ERROR: No matching distribution found for numpy==1.14.3

开始的时候,直接用这句:

pip install numpy=1.14.3 -i https://pypi.douban.com/

但是报错如下:
在这里插入图片描述

出现了警告,尝试把镜像链接的开头http改为https

在这里插入图片描述
没有出现警告,但安装还是报错,

经过我的调查发现,说是位于这个镜像上的库不受信任或不安全的主机,将被忽略,所以我们需要让它受信任,所以将代码改为:

pip install numpy=1.14.3 -i http://mirrors.aliyun.com/pypi/simple/ --trusted-host mirrors.aliyun.com

在这里插入图片描述
END!

你可能感兴趣的:(python,数据库,tensorflow,机器学习)