最终使用anaconda集成环境
==========================
以下设置由于scipy没有安装成功而配置失败,
1,编辑环境使用 Eclipse + Pydev
http://www.cnblogs.com/Bonker/p/3584707.html
python 3.4
win10 64bit
2,安装依赖库
###
whl安装准备(python3.4不需要):
http://www.cnblogs.com/wu-wenmin/p/4250330.html
字符集问题:
http://blog.csdn.net/mindmb/article/details/7898528
sitecustomize.py
import sys reload(sys) sys.setdefaultencoding(‘gb18030‘)
###
数据分析:pandas
https://pypi.python.org/pypi/pandas#downloads
配置好后,可使用
pip install pandas
安装,(有时会由于网络问题下载出错)
下载whl安装
绘图
pip install matplotlib
https://sourceforge.net/projects/matplotlib/files/matplotlib/
或下载whl安装
科学计算 scipy(安装失败,windows64bit的包没有下载到)
http://sourceforge.net/projects/scipy/files/Scipy
下载上面的exe,运行安装
64位
http://www.lfd.uci.edu/~gohlke/pythonlibs/
依赖:windows下很多需要mkl版(MKL:Intel® Math Kernel Library)
cython, numpy, ailas
python安装error集
http://www.myext.cn/other/a_37229.html
教训:一定要先看readme啊,配了半天2.7,人家竟然用的3.x
系统要求:
python >= 3.4.3
pandas >= 0.17.0
matplotlib > 1.4.3
pyyaml >= 3.11
numpy >= 1.10.1
scipy >= 0.16.1
Python学习资源
http://docs.pythontab.com/python/python2.7/
http://www.runoob.com/python/python-basic-syntax.html
--End--
原文:http://www.cnblogs.com/rakuhin/p/5270137.html