从 0 开始学 Python 自动化测试开发(二):环境搭建

​本文是「从 0 开始学 Python 自动化测试开发」专题系列文章第二篇 —— 环境搭建篇,适合零基础入门的同学。作者方程老师,是前某跨国通信公司高级测试经理,目前为某互联网名企资深测试技术专家,也是霍格沃兹测试学院「测试开发从入门到高级实战」特邀讲师。有十余年大型电信系统测试、管理经验,自主研发自动化测试工具的经验,其主笔的 CSDN 博客专栏《用 Python 做自动化测试》是测试类访问量最大的专栏。

<pre style="margin: 0px; padding: 8px 0px 6px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial; box-sizing: border-box; background: rgb(241, 239, 238); border-radius: 0px; overflow-y: auto; color: rgb(80, 97, 109); font-size: 10px; line-height: 12px; border-width: 1px; border-style: solid; border-color: rgb(226, 226, 226);">

  1. 本文目录

  2. 0. 前言与安装包准备

  3. 1. Windows 下的安装配置

  4. 1.1把 Python3.6 加入到环境变量里面。

  5. 1.2 path 的设置

  6. 1.3 确认 python 安装成功

  7. 2. Linux 下的 python3 的安装

  8. 2.1 查找 python3 安装包

  9. 2.2安装 Python3.6

  10. 2.3 设置默认 python 为 python3

  11. 2.4 安装 Python pip3

  12. 3. Mac 下的 python3 的安装

  13. 3.1 升级安装

  14. 3.2 python2 和 python3 共存

  15. 3.3 安装指定版本

</pre>

前言与安装包准备

关于环境搭建,其实笔者一直在犹豫是否要写,因为环境搭建本身是既简单而又可能很复杂的事情。简单是指如果一切顺利,一个命令(Linux 下)或者一路点 “Next/下一步” 就能搞定;复杂是指一旦遇到点问题,可能解决起来就比较麻烦,因为涉及到操作系统环境变量的一些设置,还有每个人的系统环境配置的差异,这些个性化差异网上未必有现成的答案可供搜索参考,初学者如果不知道原理的话,很难排除。

考虑到这个专栏受众是从 0 到 1 学习编程和自动化测试,为照顾到小白同学,那我们还是尽量不跳过任何一点,让大家能从零基础学会。

上一篇入门准备文章已经提到,在当下这个节点,我们建议大家从 Python3 版本学习。但现在 Linux 和 Mac 电脑系统上自带的都是 Python2,如果配置不对的话,会导致 2 个版本冲突。下面的文章中我会手把手教大家如何在 Windos、Linux、Mac 电脑下安装 Python3。

首先,登录到官网下载页面:https://www.python.org/downloads/

image

这里有 Windows 和 macOS 下的安装包,但没有 Linux 的,Linux 的 Python 安装从官方这里只能通过源代码编译、安装,涉及到一系列的依赖包的安装,对小白并不友好。我们将会介绍更简单的方法来实现 Linux 下 Python3 的安装配置。

下面以安装 Python 3.6.x 版本来作为示例(最近 Python3 的更新很快,有很多第三方包没有在最新版 python3.7.x 测试过,所以可能会有很多兼容性问题,建议大家安装 python 3.6.x 来学习)。

1. Windows 下的安装配置

Windows 的安装比较简单,一路点 “next/下一步” 即可,稍微需要注意下步骤 1 和 2 的环境变量配置。

1.1 把 Python3.6 加入到环境变量里面。

安装的时候注意要勾选上红框的选项,否则在命令行里输入 python 的时候,无法进入 Python 解析器。

image

1.2 环境变量 path 的设置

有些人可能之前已经安装过 Python2,这样 Python2 和 Python3 都会在环境变量里面。这样的话,就需要把 Python3 的路径移动到前面,才能用上 Python3。

image

1.3 确认 python 安装成功

在 windows 命令行下输入 python,如果其他的是 python 3.6.x,那就说明安装成功了,如下图。

image

2. Linux 下的 python3 的安装

此演示步骤为阿里云 CentOS 系统,其他的 Linux、Unix 系统大同小异。

2.1 查找 python3 安装包

通过 yum 命令可以很方便的找到 python 3.6 的安装包。

千万注意,此时不要卸载 python2,因为 yum 命令就是 Python 写的,会导致 yum 命令无法使用。

image

2.2 安装 Python3.6

通过 yum 安装 python3.6, -y 的意思是确认安装,否则你下载完成后,需要你输入 y 才能继续下一步。

<pre style="margin: 0px; padding: 8px 0px 6px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial; box-sizing: border-box; background: rgb(241, 239, 238); border-radius: 0px; overflow-y: auto; color: rgb(80, 97, 109); font-size: 10px; line-height: 12px; border-width: 1px; border-style: solid; border-color: rgb(226, 226, 226);">

  1. bash#yum install python36.x86_64 -y

</pre>

安装完成后,此时你输入 python,依然是 Python2。

image

2.3 设置默认 python 版本为 python3

我们切换到 /usr/bin 下可以看到,默认的 python 连接到的是 python2,所以我们只要按下面命令行代码,用 ->改一下 **软连接 **即可。

image

2.4 安装 Python pip3

比较遗憾的是 Linux 下的 python3.6 包,没有自带 pip3 工具,所以我们需要手工安装 pip3,安装过程也很简单。按照下面的命令行一步步输入按回车即可。

<pre style="margin: 0px; padding: 8px 0px 6px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial; box-sizing: border-box; background: rgb(241, 239, 238); border-radius: 0px; overflow-y: auto; color: rgb(80, 97, 109); font-size: 10px; line-height: 12px; border-width: 1px; border-style: solid; border-color: rgb(226, 226, 226);">

  1. [root@iZj6c5lqy6aztlhfie7xw2Z bin]# ls -al /usr/bin/pip*

  2. -rwxr-xr-x 1 root root 216 Feb 7 01:36 /usr/bin/pip

  3. -rwxr-xr-x 1 root root 216 Feb 7 01:36 /usr/bin/pip2

  4. -rwxr-xr-x 1 root root 216 Feb 7 01:36 /usr/bin/pip2.7

  5. -rwxr-xr-x 1 root root 370 Jan 29 15:56 /usr/bin/pip3.6

  6. [root@iZj6c5lqy6aztlhfie7xw2Z bin]# mv pip pip.bak

  7. [root@iZj6c5lqy6aztlhfie7xw2Z bin]# ln -s pip3.6 pip

  8. [root@iZj6c5lqy6aztlhfie7xw2Z bin]# ls -al /usr/bin/pip*

  9. lrwxrwxrwx 1 root root 6 Feb 14 23:52 /usr/bin/pip -> pip3.6

  10. -rwxr-xr-x 1 root root 216 Feb 7 01:36 /usr/bin/pip2

  11. -rwxr-xr-x 1 root root 216 Feb 7 01:36 /usr/bin/pip2.7

  12. -rwxr-xr-x 1 root root 370 Jan 29 15:56 /usr/bin/pip3.6

  13. -rwxr-xr-x 1 root root 216 Feb 7 01:36 /usr/bin/pip.bak

  14. [root@iZj6c5lqy6aztlhfie7xw2Z bin]#

</pre>

3. Mac 下的 python3 的安装

Mac 是个 *nix 系统,安装方法和 Linux 上差不多。只是把 yum 命令换成 brew 命令即可。当然 Mac 下的安装 python3 有三种方式,大家都可以尝试:

3.1 升级安装

打开 Mac 自带的终端 Shell 工具,直接命令行输入:

<pre style="margin: 0px; padding: 8px 0px 6px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial; box-sizing: border-box; background: rgb(241, 239, 238); border-radius: 0px; overflow-y: auto; color: rgb(80, 97, 109); font-size: 10px; line-height: 12px; border-width: 1px; border-style: solid; border-color: rgb(226, 226, 226);">

  1. brew upgrade python

</pre>

3.2 python2 和 python3 共存

<pre style="margin: 0px; padding: 8px 0px 6px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial; box-sizing: border-box; background: rgb(241, 239, 238); border-radius: 0px; overflow-y: auto; color: rgb(80, 97, 109); font-size: 10px; line-height: 12px; border-width: 1px; border-style: solid; border-color: rgb(226, 226, 226);">

  1. brew install python

</pre>

3.3 安装指定版本

前面的方法都是默认安装了 brewhome 仓库里面最新的版本,如果我们要安装某指定版本,可以通过官网下载 macOS 安装包来实现。然后一路安装下去即可。

安装完成后,此时你敲入 python 依然显示的是 python2

<pre style="margin: 0px; padding: 8px 0px 6px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial; box-sizing: border-box; background: rgb(241, 239, 238); border-radius: 0px; overflow-y: auto; color: rgb(80, 97, 109); font-size: 10px; line-height: 12px; border-width: 1px; border-style: solid; border-color: rgb(226, 226, 226);">

  1. ➜ ~ python

  2. Python 2.7.10 (default, Oct 6 2017, 22:29:07)

  3. [GCC 4.2.1 Compatible Apple LLVM 9.0.0 (clang-900.0.31)] on darwin

  4. Type "help", "copyright", "credits" or "license" for more information.

  5. >>>

</pre>

但你输入 python3,可以启动 python3 解析器

<pre style="margin: 0px; padding: 8px 0px 6px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial; box-sizing: border-box; background: rgb(241, 239, 238); border-radius: 0px; overflow-y: auto; color: rgb(80, 97, 109); font-size: 10px; line-height: 12px; border-width: 1px; border-style: solid; border-color: rgb(226, 226, 226);">

  1. ➜ ~ python3

  2. Python 3.6.5 (default, Mar 30 2018, 06:41:53)

  3. [GCC 4.2.1 Compatible Apple LLVM 9.0.0 (clang-900.0.39.2)] on darwin

  4. Type "help", "copyright", "credits" or "license" for more information.

  5. >>>

</pre>

所以如果你要设置默认的 python 为 python3 的话,做个软连接把 python 指到 python3 即可。修改软连接,首先需要切换到 root 用户,获得管理员权限。

<pre style="margin: 0px; padding: 8px 0px 6px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial; box-sizing: border-box; background: rgb(241, 239, 238); border-radius: 0px; overflow-y: auto; color: rgb(80, 97, 109); font-size: 10px; line-height: 12px; border-width: 1px; border-style: solid; border-color: rgb(226, 226, 226);">

  1. ➜ ~ su -

  2. Password:

  3. mymacbook~ root# mv /usr/bin/python /usr/bin/python.bak

  4. mymacbook~ root# which python3

  5. /usr/local/bin/python3

  6. mymacbook~ root# ln -s /usr/local/bin/python3 /usr/bin/python

  7. mymacbook~ root# python

  8. Python 3.6.5 (default, Mar 30 2018, 06:41:53)

  9. [GCC 4.2.1 Compatible Apple LLVM 9.0.0 (clang-900.0.39.2)] on darwin

  10. Type "help", "copyright", "credits" or "license" for more information.

  11. >>>

</pre>

到此为止,我们把 Windows、Linux、Mac 下 Python 编程环境都搭起来了。不同人安装的时候,会有不同的有意思的问题,大家可以在下面留言。

(文章来源于霍格沃兹测试学院)

点击领取:自动化+侧开+性能+简历+面试核心教程资
http://qrcode.testing-studio.com/f?from=jianshu&url=https://ceshiren.com/t/topic/3595

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 202,905评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,140评论 2 379
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 149,791评论 0 335
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,483评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,476评论 5 364
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,516评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,905评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,560评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,778评论 1 296
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,557评论 2 319
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,635评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,338评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,925评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,898评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,142评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,818评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,347评论 2 342