为了满足不同项目开发需要,我们经常会使用到Python2和Python3,本文以Windows系统为例介绍如何安装Python2.7.12和Python3.6.6,以及配置两个版本pip的使用。
1、安装Python2.7.12和Python3.6.6
进入Python官网下载相应版本的Python,可根据自己需要下载。
Release version | Release date | Click for more | |
---|---|---|---|
Python 3.7.0 | 2018-06-27 | Download | Release Notes |
Python 3.6.6 | 2018-06-27 | Download | Release Notes |
Python 2.7.15 | 2018-05-01 | Download | Release Notes |
Python 2.7.12 | 2016-06-25 | Download | Release Notes |
(1)点击python2.7.12安装包,点击运行,next,选择安装目录,我选择的是“C:\python27”,然后next,点击finish完成安装。
配置环境变量:右键我的电脑——>属性——>高级系统设置——>高级——>环境变量。
编辑系统变量中的Path,新建“C:\Python27”和"C:\Python27\Scripts",然后确定。这时我们就能在命令行中使用“python”命令进入python2.7.12的环境了。
PS C:\Users\Cheng> python
Python 2.7.12 (v2.7.12:d33e0cf91556, Jun 27 2016, 15:24:40) [MSC v.1500 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>>
(2)类似于Python2的安装,点击python3.6.6安装包,点击运行,next,选择安装目录,我选择的是默认安装目录“C:\Users\Cheng\AppData\Local\Programs\Python\Python36”,然后next,点击finish完成安装。可以勾选Add Python3.6 to PATH前勾选,可以直接将python3添加到系统环境变量,然后在Customize installation中自定义安装路径,也可以类似于Python2的安装进行环境变量配置。
由于两个版本安装后的应用程序都是python.exe,在命令行中用python只能唤醒Python2,所以我们把Python3的python.exe改成python3,pythonw.exe改成pythonw3.exe,这样我们就可以在命令行中通过“python3”命令进入Python3.6.6的环境了。
PS C:\Users\Cheng> python3
Python 3.6.6 (v3.6.6:4cf1f54eb7, Jun 27 2018, 03:37:03) [MSC v.1900 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>>
2、pip配置
Python 安装包需要用到包管理工具pip,但是我们同时安装python2和python3,pip默认是用的python2版本的,所以我们要进行Python3的pip配置,这里只需要重装一下Python3的pip就行。
PS C:\Users\Cheng> python3 -m pip install --upgrade pip --force-reinstall
运行之后可以通过“pip3”命令进行程序安装了,以安装Django为例,这样“pip install django”、“pip3 install django”两个命令就分别将django安装在了Python2.7.12和Python3.6.6的环境中。
PS C:\Users\Cheng> pip install django==1.11.12
Collecting django==1.11.12
Downloading https://files.pythonhosted.org/packages/92/56/1f30c1e6a58b0c97c492461148edcbece2c6e43dcc3529695165744349ee/Django-1.11.12-py2.py3-none-any.whl (6.9MB)
100% |████████████████████████████████| 7.0MB 90kB/s
Requirement already satisfied: pytz in c:\python27\lib\site-packages (from django==1.11.12) (2016.10)
Installing collected packages: django
Successfully installed django-1.11.12
PS C:\Users\Cheng>
PS C:\Users\Cheng> pip3 install django
Collecting django
Downloading https://files.pythonhosted.org/packages/51/1a/e0ac7886c7123a03814178d7517dc822af0fe51a72e1a6bff26153103322/Django-2.1-py3-none-any.whl (7.3MB)
100% |████████████████████████████████| 7.3MB 63kB/s
Requirement already satisfied: pytz in c:\users\cheng\appdata\local\programs\python\python36\lib\site-packages (from django) (2018.5)
Installing collected packages: django
Successfully installed django-2.1
PS C:\Users\Cheng>
至此,python2和python3环境配置完毕。
如果你喜欢本文章,还请点个关注和喜欢,我会为大家不断地带来Python学习笔记。