python基础教程001_安装python

时间:2021-01-15 04:39:54

1.安装python

  Windows

    http://www.python.org下载python安装包

    比如python-2.7.12.msi执行安装

    安装完毕后,开始->搜索程序跟文件->cmd->python

    出现

    ""Python 2.7.13 (v2.7.13:a06454b1afa1, Dec 17 2016, 20:42:59) [MSC v.1500 32 bit (

    Intel)] on win32
    Type "help", "copyright", "credits" or "license" for more information.
    >>>""

    安装完毕

  Linux/UNIX

    一般情况下linx/UNIX自带python,如果因为最小化安装或者其它原因导致没有自带,可以采用如下安装方法

    Debian Liunx(Ubuntu)

    $apt-get install python

    Gentoo Liunx

    $emerge python

    源文件编译

    $cd python-2.7

    ./configure --prefix=$(pwd)

    make

    make install