python基础教程001_安装python
Posted yuriyang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python基础教程001_安装python相关的知识,希望对你有一定的参考价值。
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
以上是关于python基础教程001_安装python的主要内容,如果未能解决你的问题,请参考以下文章