用win+R打开管理器,用cmd打开指令器,输入 python -m pip install matplotlib, 就ok啦
参考http://jingyan.baidu.com/article/a3aad71ae9d5afb1fb0096a3.html
参考http://jingyan.baidu.com/article/a3aad71ae9d5afb1fb0096a3.html
2017-04-12
pip是自带了的,如果要安装numpy,scipy,pandas等,一个简单的方法是,用cmd命令打开电脑的命令提示,然后输入 pip install numpy。(我是win10,python3.5)参考来源https://zhidao.baidu.com/question/393294404713989885.html
2017-04-12
这是练习题的答案:
In [95]: np_2d[0,] + np_2d[1,]
Out[95]: array([ 21.29 , 42.3 , 32.55 , 44.909])
In [95]: np_2d[0,] + np_2d[1,]
Out[95]: array([ 21.29 , 42.3 , 32.55 , 44.909])
2017-03-31