1.3-1.5 python的安装
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了1.3-1.5 python的安装相关的知识,希望对你有一定的参考价值。
python官网下载:https://www.python.org/downloads/
官网下载较慢可使用soho下载源:http://mirrors.sohu.com/python
Python3最新版本是3.6,但目前还有大部分代码依旧使用Python2,所以安装最新python2.7为基本学习版本
一,linxu下安装python
linux各版本都默认安装python2
包管理安装
centos
yum install -y python
ubuntu/debian
sudo apt-get install python
源码安装Python:
下载最新2.7版本
wget http://mirrors.sohu.com/python/2.7.14/Python-2.7.14.tgz
tar zxvf Python-2.7.14.tgz
cd Python-2.7.14
./configure
make
make install
添加系统变量:
vim /etc/profile.d/path.sh
#!/bin/bash
export PATH=$PATH:/usr/local/bin/python
二,windowns下安装Python:
1,下载
https://www.python.org/ftp/python/2.7.14/python-2.7.14.msi
2,双击安装,下一步下一步安装完成
记住安装路径,默认安装在C:\Python27,
3,添加系统环境变量
python3版本Windows安装界面中有选择Path环境变量的选项,而python2安装界面中没有,需要手动添加环境变量
Windows10下
选择我的电脑---》右键属性---》左侧,高级系统属性---》右下角,环境变量,
下方系统变量中选择Path,编辑---》新建---》填写安装路径 ---》确认退出
win7 中前面选项相同,在编辑Path选项中,在变量值末尾以英文 “ ; ”分号隔开添加安装路径
或者 CMD 中执行
path=%path%;C:\Python
4,检查变量是否正确
win键 +R 打开 cmd
在命令行中输入python ,能够进去python解析界面说明安装成功
PS C:\Users\songliang> python
Python 3.6.1 (v3.6.1:69c0db5, Mar 21 2017, 18:41:36) [MSC v.1900 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>>
三,MAC OS 下安装:
使用包管理homebrew安装(推荐)
brew install python
Macs系统都自带有Python环境,你也可以在链接 http://www.python.org/download/ 上下载最新版安装
缺点是以后升级卸载需要自己维护,
安装位置可以使用 which python 查看
安装完成后在终端中输入python来验证是否成功
以上是关于1.3-1.5 python的安装的主要内容,如果未能解决你的问题,请参考以下文章