1、Python适用于多平台,如:Linux、Windows、Mac OS X。
2、Python下载地址:https://www.python.org/
3、Python安装:略
4、Python添加环境变量:将Python的安装路径D:Program FilesPythonPython37添加到PATH环境变量中。
5、运行Python:
5.1、Windows:使用Python自带的交互式解释器(IDLE)或者命令行窗口执行:python。
5.2、Linux:命令行执行:python。
5.3、使用ipython
5.3.1、Windows安装ipython:命令行窗口执行pip install ipython。