十年网站开发经验 + 多家企业客户 + 靠谱的建站团队
量身定制 + 运营维护+专业推广+无忧售后,网站问题一站解决
一、推荐安装Anaconda
官方介绍:Anaconda is a completely free Python distribution (including for commercial use and redistribution). It includes more than 400 of the most popular Python packages for science, math, engineering, and data analysis.
下载页面:https://www.continuum.io/downloads
Python的有些模块在单独安装时可能非常麻烦,Anaconda中则已经集成好了许多常见的模块,用起来非常方便。
安装Anaconda之前不需要预先安装python,它其中已经自带Python、IPython、集成开发环境Spyder、一些包等等。
anaconda自带的conda命令:
# 查看安装的包 conda list # 安装模块 conda install scipy # 更新模块 conda update scipy # 更新所有模块 conda update --all # 升级Anaconda conda update conda conda update anaconda