python安装scipy的步骤解析

时间:2019-09-29
本文章向大家介绍python安装scipy的步骤解析,主要包括python安装scipy的步骤解析使用实例、应用技巧、基本知识点总结和需要注意事项,具有一定的参考价值,需要的朋友可以参考一下。

1、由于国外网站太慢,所以这里使用的是阿里的镜像

https://mirrors.aliyun.com/pypi/simple/

2、去官网查看,官方给出的安装方法如下:【pip安装和apt的方式两种】

python -m pip install --user numpy scipy matplotlib ipython jupyter pandas sympy nose
sudo apt-get install python-numpy python-scipy python-matplotlib ipython ipython-notebook python-pandas python-sympy python-nose

3、由于我使用的是windows并且安装了pip,所以这里使用pip进行安装

python -m pip install -i https://mirrors.aliyun.com/pypi/simple/ --user numpy scipy matplotlib ipython jupyter pandas sympy nose

4、稍等片刻。。。。。。完成!

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。