ubuntu 14.04配置python安装第三方库(numpy,scipy,matplotlib等)
ubuntu安装python第三方库的两种方法直接使用系统自带命令安装,这种方式能够正确解决第三方库复杂的依赖关系。$ sudo apt-get install python-[package name]使用python推荐的包管理工具pip,这种方法也是比较方便的,但是首先需要安装pip,具体的使用方法可以help查看$ sudo apt-get install python-pip$ su