Python 3 安装
学习任何编程语言的第一步实际上不是 Hello World,而是语言包的安装。
Python 3 安装
在 Windows 上安装 Python 3
首先,请到 Python 官方网站下载页面 https://www.python.org/downloads/ 下载最新版本的 Windows - Python 3.6.4 (截至 2018 年 2 月)。
Python 的安装目录默认嵌入 Python 版本号,例如,最新版本的 Python 3.6.4 将安装在 C:\Python36\
中。你可以在 PC 上安装多个安装的 Python 版本,它们并不会产生任何冲突。但是这也意味着如果你有多个 Python 版本,那每次启动 python 时都需要指定 Python 版本号。例如,将 C:\Python36\
放入系统变量 PATH
中。或者为了简单起见,你可以使用下面的 bash 脚本来修改 PATH
。
set PATH=C:\Python36;%PATH%
PATH=C:\Ptyon36
应该在%PATH%
之前,否则,如果系统变量 PATH
中已经包含其他版本的 Python 路径,其他版本的 Python 会被调用,而不是你想要的这一版本。系统变量 PATH
中越靠前的变量具有更好的优先级。在 Windows 上安装 Python 2
安装过程与上述过程相似,区别在于你应该下载最新的 Python 2 版本,即 Python 2.7.14。
虚拟环境安装
虚拟环境是一个 Python 环境,你可以在其中安装独立的 Python 版本,库以及脚本。因此,此虚拟环境与其他虚拟环境是隔离开来的,任何外部的更改(安装和删除)都不会影响到此虚拟环境。
Python 虚拟环境可以使用以下工具创建:
venv
在安装 Python 3.3 及更高版本时是缺省安装的,它在 Python 3.4 及更高版本的虚拟环境中安装pip
和setuptools
。virtualenv
也是创建 Python 虚拟环境的工具。virtualenv
支持 Python 2.6+ 和 3.3+。当你使用virtualenv
创建虚拟环境时,pip
,setuptools
和wheels
将会被缺省的安装在我们的虚拟环境中。
在本节中,我们将使用 virtualenv
来创建一个独立的 Python 虚拟环境,然后将软件包安装到该虚拟环境中。具体步骤如下,
-
首先安装
distribute
和pip
distribute
下载地址:https://pypi.python.org/pypi/distribute/
pip
下载地址:
-
以管理员身份运行命令提示符并将目录切换到刚才下载了
distribute
和pip
的文件夹 -
用以下命令来安装
distribute
和pip
:
C:\> cd Users\HP\AppData\Local\Programs\Python\Python36-32
C:\Users\HP\AppData\Local\Programs\Python\Python36-32> Python distribute_setup.py
C:\Users\HP\AppData\Local\Programs\Python\Python36-32> Python get-pip.py
-
安装
virtualenv
:
pip install virtualenv
Founder of DelftStack.com. Jinku has worked in the robotics and automotive industries for over 8 years. He sharpened his coding skills when he needed to do the automatic testing, data collection from remote servers and report creation from the endurance test. He is from an electrical/electronics engineering background but has expanded his interest to embedded electronics, embedded programming and front-/back-end programming.
LinkedIn