随笔分类 -  Python

摘要:安装pandas时,报错,也在StackOverflow上找到了解决办法。先安装distribute:$ wget http://python-distribute.org/distribute_setup.py$ python distribute_setup.py然后再安装pandas,就没有问题了。那么,这个distribute是什么东西?Distribute是对标准库disutils模块的增强,我们知道disutils主要是用来更加容易的打包和分发包,特别是对其他的包有依赖的包。Distribute被创建是因为Setuptools包不再维护了。 阅读全文
posted @ 2013-12-17 15:44 Dengchao 阅读(229) 评论(0) 推荐(0)
摘要:由于自己使用的是Ubuntu12.04,直接使用apt-get安装的scipy的版本比较底,所以采用了源码安装的方式安装scipy 0.13.2版本,但是安装时报错。错误如下:numpy.distutils.system_info.BlasNotFoundError: Blas(http://www.netlib.org/blas/) libraries not found. Directories to search for the libraries can be specified in the numpy/distutils/site.cfg file (sectio... 阅读全文
posted @ 2013-12-17 15:31 Dengchao 阅读(628) 评论(0) 推荐(0)